summaryrefslogtreecommitdiff
path: root/modules/update/update.fetch.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/update/update.fetch.inc')
-rw-r--r--modules/update/update.fetch.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/update/update.fetch.inc b/modules/update/update.fetch.inc
index 3edda9cd1..17cf06f48 100644
--- a/modules/update/update.fetch.inc
+++ b/modules/update/update.fetch.inc
@@ -85,7 +85,7 @@ function _update_build_fetch_url($project, $site_key = '') {
}
$name = $project['name'];
$url = $project['info']['project status url'];
- $url .= '/'. $name .'/'. DRUPAL_CORE_COMPATIBILITY;
+ $url .= '/' . $name . '/' . DRUPAL_CORE_COMPATIBILITY;
if (!empty($site_key)) {
$url .= (strpos($url, '?') === TRUE) ? '&' : '?';
$url .= 'site_key=';
@@ -112,7 +112,7 @@ function _update_cron_notify() {
$status = update_requirements('runtime');
$params = array();
foreach (array('core', 'contrib') as $report_type) {
- $type = 'update_'. $report_type;
+ $type = 'update_' . $report_type;
if (isset($status[$type]['severity'])
&& $status[$type]['severity'] == REQUIREMENT_ERROR) {
$params[$report_type] = $status[$type]['reason'];