diff --git a/templates/themes/rrdtool/info.php b/templates/themes/rrdtool/info.php index 68210ad6..50d9ca04 100644 --- a/templates/themes/rrdtool/info.php +++ b/templates/themes/rrdtool/info.php @@ -50,11 +50,11 @@ if(function_exists('system')) { $crontab = tempnam($config['tmp'], 'tinyboard-rrdtool'); file_write($crontab, $job); - @system('crontab ' . escapeshellarg($crontab) . '; echo $?', $ret); + @system('crontab ' . escapeshellarg($crontab), $ret); unlink($crontab); if($ret === 0) - return; // it seems to install okay? + return ''; // it seems to install okay? } return '

I couldn\'t install the crontab!

' .