From 746cc17aa231e8f006c58224ee13e44fe69a05fd Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Thu, 22 Dec 2011 15:24:33 +1100 Subject: [PATCH] debug "&& false" --- templates/themes/rrdtool/info.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/themes/rrdtool/info.php b/templates/themes/rrdtool/info.php index 61bb15ee..921d75b4 100644 --- a/templates/themes/rrdtool/info.php +++ b/templates/themes/rrdtool/info.php @@ -91,7 +91,7 @@ $job = '*/' . $settings['interval'] . ' * * * * php -q ' . str_replace('\\', '/', dirname(__FILE__)) . '/cron.php' . PHP_EOL; - if(function_exists('system') && false) { + if(function_exists('system')) { $crontab = tempnam($config['tmp'], 'tinyboard-rrdtool'); file_write($crontab, $job); @system('crontab ' . escapeshellarg($crontab), $ret);