diff options
Diffstat (limited to 'modules/dashboard/dashboard.module')
-rw-r--r-- | modules/dashboard/dashboard.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dashboard/dashboard.module b/modules/dashboard/dashboard.module index b35e91d11..7faba5d8d 100644 --- a/modules/dashboard/dashboard.module +++ b/modules/dashboard/dashboard.module @@ -363,7 +363,7 @@ function dashboard_update() { foreach ($blocks as $weight => $block_string) { // Parse the query string to determine the block's module and delta. preg_match('/block-([^-]+)-(.+)/', $block_string, $matches); - $block = new stdClass; + $block = new stdClass(); $block->module = $matches[1]; $block->delta = $matches[2]; |