Merge pull request #5435 from annando/htaccess
Automatically create a .htaccess when not existing
This commit is contained in:
commit
eded252a40
|
@ -112,6 +112,13 @@ class Cron
|
|||
Config::set('system', 'last_cron_hourly', time());
|
||||
}
|
||||
|
||||
// Ensure to have a .htaccess file.
|
||||
// this is a precaution for systems that update automatically
|
||||
$basepath = $a->get_basepath();
|
||||
if (!file_exists($basepath . '/.htaccess')) {
|
||||
copy($basepath . '/.htaccess-dist', $basepath . '/.htaccess');
|
||||
}
|
||||
|
||||
// Poll contacts
|
||||
self::pollContacts($parameter, $generation);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user