diff --git a/www-ssl/admin/room.php b/www-ssl/admin/room.php
index 50171986..151d9bca 100755
--- a/www-ssl/admin/room.php
+++ b/www-ssl/admin/room.php
@@ -183,7 +183,7 @@ case 'delete':
if (IsSet($SQL)){
// echo $SQL;
// hier muesste das SQL ausgefuehrt werden...
- $Erg = mysql_query($SQL, $con);
+ $Erg = db_query($SQL, "exec SQL");
if ($Erg == 1)
echo "Änderung wurde gesichert...
";
else
diff --git a/www-ssl/admin/shiftadd.php b/www-ssl/admin/shiftadd.php
index c0230748..70391041 100755
--- a/www-ssl/admin/shiftadd.php
+++ b/www-ssl/admin/shiftadd.php
@@ -291,7 +291,7 @@ function CreateNewEntry()
$SQL .= "'". $_DateS. "', '". $_DateE. "', ";
$SQL .= "'". $_GET["len"]. "', '". $_GET["RID"]. "', ";
$SQL .= "'". $_GET["SchichtName"]. "');";
- $Erg = mysql_query($SQL, $con);
+ $Erg = db_query($SQL, "create shift");
$SQLFail = "\n\t
[".$SQL. "]";
diff --git a/www-ssl/admin/userDefaultSetting.php b/www-ssl/admin/userDefaultSetting.php
index 09c62a15..84d880ad 100755
--- a/www-ssl/admin/userDefaultSetting.php
+++ b/www-ssl/admin/userDefaultSetting.php
@@ -20,7 +20,7 @@ if( isset( $_GET["Field"]) && isset( $_GET["Default"]) && isset( $_GET["Send"]))
case "New":
$SQL = "ALTER TABLE `UserCVS` ADD `". $_GET["Field"]. "` ".
"CHAR( 1 ) DEFAULT '". $_GET["Default"]. "' NOT NULL";
- $Erg = mysql_query( $SQL, $con);
+ $Erg = db_query( $SQL, "New user default setting");
if( $Erg == 1)
echo "