From 0e80d1bc0a36526cc7cc73d6d1719128e965dac9 Mon Sep 17 00:00:00 2001 From: Dominik Mueller <info@profi-webdesign.net> Date: Wed, 26 Feb 2014 18:05:50 -0500 Subject: [PATCH] Syntaxerror-korrektur --- interface/lib/classes/quota_lib.inc.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/interface/lib/classes/quota_lib.inc.php b/interface/lib/classes/quota_lib.inc.php index a811132..1031cdc 100644 --- a/interface/lib/classes/quota_lib.inc.php +++ b/interface/lib/classes/quota_lib.inc.php @@ -1,7 +1,7 @@ <?php class quota_lib { - public function get_quota_data(groupid = null, $readable = true) { + public function get_quota_data($groupid = null, $readable = true) { global $app; $tmp_rec = $app->db->queryAllRecords("SELECT data from monitor_data WHERE type = 'harddisk_quota' ORDER BY created DESC"); @@ -14,7 +14,7 @@ //print_r($monitor_data); if($groupid != null){ - $sql_where = " AND sys_groupid = ".$groupid); + $sql_where = " AND sys_groupid = ".$groupid; } // select websites belonging to client @@ -115,7 +115,7 @@ } if($groupid != null){ - $sql_where = " AND sys_groupid = ".$groupid); + $sql_where = " AND sys_groupid = ".$groupid; } -- Gitblit v1.9.1