diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-31 16:46:32 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-31 16:46:32 +0000 |
commit | a244b45cfbbb22d9087ff0accf83d30e2050a618 (patch) | |
tree | 31a78270ff18fc21e8869dd9d54544249d8b34c6 /modules/system/system.module | |
parent | df78741823ae9fd2d2201b08889b47a4958928c8 (diff) | |
download | brdo-a244b45cfbbb22d9087ff0accf83d30e2050a618.tar.gz brdo-a244b45cfbbb22d9087ff0accf83d30e2050a618.tar.bz2 |
#558958 by Frando and moshe weitzman: Add a hook_page_build() that runs before hook_page_alter().
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index d9a29a0cb..bd72b1fd8 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -3085,9 +3085,9 @@ function system_retrieve_file($url, $destination = NULL, $overwrite = TRUE) { } /** - * Implement hook_page_alter(). + * Implement hook_page_build(). */ -function system_page_alter(&$page) { +function system_page_build(&$page) { // Automatic cron runs. // @see system_run_cron_image() if (system_run_cron_image_access()) { |