From 232811de6dbacb39b2db12473e0fad47a65151e3 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Tue, 26 Oct 2010 09:42:32 -0400 Subject: [PATCH] Fixed: FS#1354 - DB column unknown 'action_status' --- server/cron_daily.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/server/cron_daily.php b/server/cron_daily.php index e9aedac..e3fc5be 100644 --- a/server/cron_daily.php +++ b/server/cron_daily.php @@ -295,7 +295,7 @@ $maxId = $res['max(action_id)']; $sql = "DELETE FROM sys_remoteaction " . "WHERE tstamp < " . $tstamp . " " . - " AND action_status = 'ok' " . + " AND action_state = 'ok' " . " AND action_id <" . intval($maxId); $app->dbmaster->query($sql); -- Gitblit v1.9.1