From eed2f22e860b449e1782fcf6f969412557f6c940 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole Date: Mon, 1 Feb 2016 19:15:44 +0900 Subject: [PATCH] Issue #2657096 by xjm: Provide a link to the experimental module policy in the status report warning --- 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 fde14368833..133f57c4dda 100644 --- a/core/modules/system/system.install +++ b/core/modules/system/system.install @@ -61,7 +61,7 @@ function system_requirements($phase) { if (!empty($experimental)) { $requirements['experimental'] = array( 'title' => t('Experimental modules enabled'), - 'value' => t('Experimental modules found: %module_list. Experimental modules are provided for testing purposes only. Use at your own risk.', array('%module_list' => implode(', ', $experimental))), + 'value' => t('Experimental modules found: %module_list. Experimental modules are provided for testing purposes only. Use at your own risk.', array('%module_list' => implode(', ', $experimental), ':url' => 'https://www.drupal.org/core/experimental')), 'severity' => REQUIREMENT_WARNING, ); }