diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-09 03:48:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-09 03:48:59 +0000 |
commit | 154d593e5dccbd80d3b37f72387bb723fbb868df (patch) | |
tree | a2a2b116d8485793f3f93b2d8c1c11995a16eb0a /modules/block/block.module | |
parent | 972d2fed4d5951e7f87af3811c8a01ff559a855d (diff) | |
download | brdo-154d593e5dccbd80d3b37f72387bb723fbb868df.tar.gz brdo-154d593e5dccbd80d3b37f72387bb723fbb868df.tar.bz2 |
- Patch #503782 by skilip, Davy Van Den Bremt, eojthebrave, sign: not able to select region at block creation.
Diffstat (limited to 'modules/block/block.module')
-rw-r--r-- | modules/block/block.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.module b/modules/block/block.module index 183148ec6..ad56834e9 100644 --- a/modules/block/block.module +++ b/modules/block/block.module @@ -31,7 +31,7 @@ function block_help($path, $arg) { $output .= '</dl>'; return $output; case 'admin/structure/block/add': - return '<p>' . t('Use this page to create a new custom block. New blocks are disabled by default; assign them to a region, on this page or the <a href="@blocks">Blocks administration page</a>, to make them visible.', array('@blocks' => url('admin/structure/block'))) . '</p>'; + return '<p>' . t('Use this page to create a new custom block.') . '</p>'; } if ($arg[0] == 'admin' && $arg[1] == 'structure' && $arg['2'] == 'block' && (empty($arg[3]) || $arg[3] == 'list')) { $demo_theme = !empty($arg[4]) ? $arg[4] : variable_get('theme_default', 'garland'); |