Marius Cramer
2015-05-26 8081dfc524267e6e779303ad15f5224123c02add
- fixed sql query from previous commit
1 files modified
8 ■■■■ changed files
server/lib/classes/monitor_tools.inc.php 8 ●●●● patch | view | raw | blame | history
server/lib/classes/monitor_tools.inc.php
@@ -676,13 +676,7 @@
         * even though it is the NEWEST data of this server. To avoid this i HAVE to include
         * the server-id!
         */
        $sql = 'DELETE FROM monitor_data ' .
            'WHERE ' .
            '  type = ?' .
            'AND ' .
            '  created < UNIX_TIMESTAMP() - ?' .
            'AND ' .
            '  server_id = ?';
        $sql = 'DELETE FROM `monitor_data` WHERE `type` = ? AND `created` < UNIX_TIMESTAMP() - ? AND `server_id` = ?';
        $app->dbmaster->query($sql, $type, $old, $serverId);
    }