diff --git a/modules/cron/hooks/hook_configpage.php b/modules/cron/hooks/hook_configpage.php index 05301a912c4897d616b9571c70c0b6e586d69788..d933c5c5d1f707c6a98f4ad9ff1712f2a21da2a0 100644 --- a/modules/cron/hooks/hook_configpage.php +++ b/modules/cron/hooks/hook_configpage.php @@ -13,7 +13,7 @@ use SimpleSAML\XHTML\Template; function cron_hook_configpage(Template &$template): void { $template->data['links']['cron'] = [ - 'href' => Module::getModuleURL('cron/croninfo.php'), + 'href' => Module::getModuleURL('cron/info'), 'text' => Translate::noop('Cron module information page'), ]; $template->getLocalization()->addModuleDomain('cron'); diff --git a/modules/cron/hooks/hook_frontpage.php b/modules/cron/hooks/hook_frontpage.php index 9282b4a18051c9c91f16086b1c0f34992a2731c3..430edf7ef30465eedc9dadddbd3bbd5f05cad036 100644 --- a/modules/cron/hooks/hook_frontpage.php +++ b/modules/cron/hooks/hook_frontpage.php @@ -14,7 +14,7 @@ function cron_hook_frontpage(array &$links): void Assert::keyExists($links, 'links'); $links['config'][] = [ - 'href' => Module::getModuleURL('cron/croninfo.php'), + 'href' => Module::getModuleURL('cron/info'), 'text' => '{cron:cron:link_cron}', ]; }