diff options
author | Angelo Cuccato <cuccato@web.de> | 2010-12-26 21:59:51 +0100 |
---|---|---|
committer | Angelo Cuccato <cuccato@web.de> | 2010-12-26 21:59:51 +0100 |
commit | 8db632f7d10284d450be0ee613cf5363932cf08e (patch) | |
tree | df58d4cc50f97826280ec1bba4292986ac36e74a /www-ssl | |
parent | dd5f2ef7ad6490f12540d7fd6712d434fc4c2efd (diff) |
add logging for Gekommen
Diffstat (limited to 'www-ssl')
-rwxr-xr-x | www-ssl/admin/userArrived.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www-ssl/admin/userArrived.php b/www-ssl/admin/userArrived.php index 7470d695..32cd230d 100755 --- a/www-ssl/admin/userArrived.php +++ b/www-ssl/admin/userArrived.php @@ -9,7 +9,7 @@ include ("../../includes/funktion_db_list.php"); If (IsSet($_GET["arrived"])) { $SQL="UPDATE `User` SET `Gekommen`='1' WHERE `UID`='". $_GET["arrived"]. "' limit 1"; - $Erg = mysql_query($SQL, $con); + $Erg = db_query($SQL, "Set User as Gekommen"); if ($Erg == 1) { echo "<h2>". Get_Text("pri_userArrived_WriteOK"). " \"". UID2Nick($_GET["arrived"]). "\"</h2>"; } else { |