removing unneeded file install_configs.php;

making $cronscriptDebug a setting in the database (no messing around in the files for debugging);
removed unnecessary unset() in cron_init.php;
setting of correct file-ownership of logfiles in apache and lighttpd crons;
This commit is contained in:
Michael Kaufmann (d00p)
2010-01-25 07:29:23 +00:00
parent 568e214343
commit b6699850bb
10 changed files with 53 additions and 154 deletions

View File

@@ -95,6 +95,14 @@ return array(
'type' => 'hidden',
'default' => 'www-data',
),
'system_debug_cron' => array(
'label' => $lng['serversettings']['cron']['debug'],
'settinggroup' => 'system',
'varname' => 'debug_cron',
'type' => 'bool',
'default' => false,
'save_method' => 'storeSettingField',
),
),
),
),