From 8bc33bdef37cf2bde9200500cc5b4280d2617b2e Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon Date: Tue, 13 Aug 2013 07:59:09 -0700 Subject: [PATCH] Issue #2061545 by StephaneQ, rterrein: Add missing ampersand in sample hook_dashboard_regions_alter function body --- modules/dashboard/dashboard.api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/dashboard/dashboard.api.php b/modules/dashboard/dashboard.api.php index 623dd30abe3..a36a8ea0e32 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']); }