summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2013-08-13 07:59:09 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2013-08-13 07:59:09 -0700
commit8bc33bdef37cf2bde9200500cc5b4280d2617b2e (patch)
treecb97731ce60dd7765dc96e145bb563f2bd4caa41 /modules
parent493eb8f292784e3ea9855ef61d6cf5153e024b68 (diff)
downloadbrdo-8bc33bdef37cf2bde9200500cc5b4280d2617b2e.tar.gz
brdo-8bc33bdef37cf2bde9200500cc5b4280d2617b2e.tar.bz2
Issue #2061545 by StephaneQ, rterrein: Add missing ampersand in sample hook_dashboard_regions_alter function body
Diffstat (limited to 'modules')
-rw-r--r--modules/dashboard/dashboard.api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dashboard.api.php b/modules/dashboard/dashboard.api.php
index 623dd30ab..a36a8ea0e 100644
--- a/modules/dashboard/dashboard.api.php
+++ b/modules/dashboard/dashboard.api.php
@@ -32,7 +32,7 @@ function hook_dashboard_regions() {
* An array containing all dashboard regions, in the format provided by
* hook_dashboard_regions().
*/
-function hook_dashboard_regions_alter($regions) {
+function hook_dashboard_regions_alter(&$regions) {
// Remove the sidebar region defined by the core dashboard module.
unset($regions['dashboard_sidebar']);
}