From 3422b7b5d01cd35c6d07f9371857e706c6b17b0f Mon Sep 17 00:00:00 2001 From: webchick Date: Wed, 16 Jan 2013 21:09:51 -0800 Subject: [PATCH] Issue #1873574 by David_Rothstein: Fixed Cron URL on status report page is no longer an absolute URL. --- core/modules/system/system.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/system.install b/core/modules/system/system.install index ca5d6de4e29..b63ca4607b0 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -294,7 +294,7 @@ function system_requirements($phase) { } $description .= ' ' . $t('You can run cron manually.', array('@cron' => url('admin/reports/status/run-cron'))); - $description .= '
' . $t('To run cron from outside the site, go to !cron', array('!cron' => url('cron/' . state()->get('system.cron_key')))); + $description .= '
' . $t('To run cron from outside the site, go to !cron', array('!cron' => url('cron/' . state()->get('system.cron_key'), array('absolute' => TRUE)))); $requirements['cron'] = array( 'title' => $t('Cron maintenance tasks'),