summaryrefslogtreecommitdiff
path: root/includes/model/Room_model.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2017-01-03 14:12:17 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-03 15:32:59 +0100
commit55141154c083acc2d0397f4c62b4e0be1c7a19fa (patch)
tree7e5e54a19f7df976fa68c42f21f1484112a7c257 /includes/model/Room_model.php
parent356b2582f3e6a43ecf2607acad4a7fe0b37f659a (diff)
Replaced " with '
Diffstat (limited to 'includes/model/Room_model.php')
-rw-r--r--includes/model/Room_model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/model/Room_model.php b/includes/model/Room_model.php
index 9c202c1e..a96ca715 100644
--- a/includes/model/Room_model.php
+++ b/includes/model/Room_model.php
@@ -19,7 +19,7 @@ function Rooms($show_all = false)
*/
function Room_delete($room_id)
{
- return sql_query("DELETE FROM `Room` WHERE `RID`=" . sql_escape($room_id));
+ return sql_query('DELETE FROM `Room` WHERE `RID`=' . sql_escape($room_id));
}
/**