diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-11-12 15:42:20 -0800 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-11-12 15:42:20 -0800 |
commit | b26aa370c93f0d3ca443a74d8df243475a0927cc (patch) | |
tree | 7a5800005a1e7100638481af1b3da83d820ee8f4 /modules/system/system.api.php | |
parent | 2df4ce263217b00638097d54247f1449a4a4d7c9 (diff) | |
download | brdo-b26aa370c93f0d3ca443a74d8df243475a0927cc.tar.gz brdo-b26aa370c93f0d3ca443a74d8df243475a0927cc.tar.bz2 |
Issue #1339292 by xjm: Fixed hook_requirements() documentation references incorrect path for cron in system.api.php.
Diffstat (limited to 'modules/system/system.api.php')
-rw-r--r-- | modules/system/system.api.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 6fd2c036b..1e8d35a78 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -2881,7 +2881,7 @@ function hook_requirements($phase) { // Test PHP version $requirements['php'] = array( 'title' => $t('PHP'), - 'value' => ($phase == 'runtime') ? l(phpversion(), 'admin/logs/status/php') : phpversion(), + 'value' => ($phase == 'runtime') ? l(phpversion(), 'admin/reports/status/php') : phpversion(), ); if (version_compare(phpversion(), DRUPAL_MINIMUM_PHP) < 0) { $requirements['php']['description'] = $t('Your PHP installation is too old. Drupal requires at least PHP %version.', array('%version' => DRUPAL_MINIMUM_PHP)); @@ -2903,7 +2903,7 @@ function hook_requirements($phase) { ); } - $requirements['cron']['description'] .= ' ' . $t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/logs/status/run-cron'))); + $requirements['cron']['description'] .= ' ' . $t('You can <a href="@cron">run cron manually</a>.', array('@cron' => url('admin/reports/status/run-cron'))); $requirements['cron']['title'] = $t('Cron maintenance tasks'); } |