diff options
author | Mario <mario@mariovavti.com> | 2024-06-11 09:00:43 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-06-11 09:00:43 +0000 |
commit | 088a87914f7bbe5bb45ea125ae3c1b1a8ef0ed80 (patch) | |
tree | d1aa765d6d409f1e0874a74c5d499594e6dbdc6d /boot.php | |
parent | 5110dcb9126a0d21062537f0fb640c3078811f81 (diff) | |
download | volse-hubzilla-088a87914f7bbe5bb45ea125ae3c1b1a8ef0ed80.tar.gz volse-hubzilla-088a87914f7bbe5bb45ea125ae3c1b1a8ef0ed80.tar.bz2 volse-hubzilla-088a87914f7bbe5bb45ea125ae3c1b1a8ef0ed80.zip |
remove not needed namespace
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1648,7 +1648,7 @@ function fix_system_urls($oldurl, $newurl) { } } - Zotlabs\Daemon\Master::Summon(['Notifier', 'refresh_all', $c[0]['channel_id']]); + Master::Summon(['Notifier', 'refresh_all', $c[0]['channel_id']]); } } @@ -2725,7 +2725,7 @@ function check_cron_broken() { $d = Config::Get('system', 'lastcron'); if ((!$d) || ($d < datetime_convert('UTC', 'UTC', 'now - 4 hours'))) { - Zotlabs\Daemon\Master::Summon(['Cron']); + Master::Summon(['Cron']); Config::Set('system', 'lastcron', datetime_convert()); } |