I would suggest this:
/includes/functions/banner.php
around line 14 you have this:
Code:
function zen_set_banner_status($banners_id, $status) {
global $db;
if ($status == '1') {
$sql = "update " . TABLE_BANNERS . "
set status = 1, date_status_change = now(), date_scheduled = ''
where banners_id = '" . (int)$banners_id . "'";
return $db->Execute($sql);
} elseif ($status == '0') {
make the following change shown in red (remove the quotes and replace with NULL):
Code:
function zen_set_banner_status($banners_id, $status) {
global $db;
if ($status == '1') {
$sql = "update " . TABLE_BANNERS . "
set status = 1, date_status_change = now(), date_scheduled = NULL
where banners_id = '" . (int)$banners_id . "'";
return $db->Execute($sql);
} elseif ($status == '0') {