diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-24 17:39:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-24 17:39:35 +0000 |
commit | a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b (patch) | |
tree | 9194465a044c0fdad447eba2906f0472a4dff515 /modules/block | |
parent | a5f42fd007bf3646261b431c52cde53657e21564 (diff) | |
download | brdo-a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b.tar.gz brdo-a24a6c2bba2d15ab835e0b0fce9354bb6fb16c5b.tar.bz2 |
- Patch #471070 by stella: millions of code style fixes.
Diffstat (limited to 'modules/block')
-rw-r--r-- | modules/block/block.install | 8 | ||||
-rw-r--r-- | modules/block/block.module | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/block/block.install b/modules/block/block.install index 0b4544ed0..f19fd306e 100644 --- a/modules/block/block.install +++ b/modules/block/block.install @@ -178,8 +178,8 @@ function block_schema() { */ function block_install() { drupal_install_schema('block'); - - // Block should go first so that other modules can alter its output + + // Block should go first so that other modules can alter its output // during hook_page_alter(). Almost everything on the page is a block, // so before block module runs, there will not be much to alter. db_update('system') @@ -199,8 +199,8 @@ function block_uninstall() { /** * Set system.weight to a low value for block module. - * - * Block should go first so that other modules can alter its output + * + * Block should go first so that other modules can alter its output * during hook_page_alter(). Almost everything on the page is a block, * so before block module runs, there will not be much to alter. */ diff --git a/modules/block/block.module b/modules/block/block.module index c52cf5143..4e7cc6270 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -95,7 +95,7 @@ function block_theme() { 'block' => array( 'arguments' => array('block' => NULL), 'template' => 'block', - ), + ), 'block_admin_display_form' => array( 'template' => 'block-admin-display-form', 'file' => 'block.admin.inc', |