summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2014-03-15 05:52:00 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2014-03-15 05:52:00 -0700
commit46180bb6340af73218ea99ace7ce34b2f133dd86 (patch)
treee1735b65af92266c768026faab9d5e12931fc176 /modules/system
parent7c6dbceaaa7f9fe8c5fe80b45da9feb332370799 (diff)
downloadbrdo-46180bb6340af73218ea99ace7ce34b2f133dd86.tar.gz
brdo-46180bb6340af73218ea99ace7ce34b2f133dd86.tar.bz2
Issue #2215877 by asrob: Fix function signature for hook_ajax_render_alter()
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.api.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php
index f54078b6d..fbcb17348 100644
--- a/modules/system/system.api.php
+++ b/modules/system/system.api.php
@@ -875,7 +875,7 @@ function hook_css_alter(&$css) {
*
* @see ajax_render()
*/
-function hook_ajax_render_alter($commands) {
+function hook_ajax_render_alter(&$commands) {
// Inject any new status messages into the content area.
$commands[] = ajax_command_prepend('#block-system-main .content', theme('status_messages'));
}