diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-06-27 11:48:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-06-27 11:48:58 +0000 |
commit | b2862df573327d6a392b893b35828bee007c2740 (patch) | |
tree | ac8e83ef9b4736c9d3735b2aca30d3ed4b6cbde2 | |
parent | 3ae64656b509623868b67fa5f4055e638028dcbc (diff) | |
download | brdo-b2862df573327d6a392b893b35828bee007c2740.tar.gz brdo-b2862df573327d6a392b893b35828bee007c2740.tar.bz2 |
- Patch #503836 by gaele: made the block visibility option a tiny bit more clear.
-rw-r--r-- | modules/block/block.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/block/block.admin.inc b/modules/block/block.admin.inc index ea3354b1c..70f7fa1ec 100644 --- a/modules/block/block.admin.inc +++ b/modules/block/block.admin.inc @@ -211,7 +211,7 @@ function block_admin_configure(&$form_state, $module = NULL, $delta = 0) { $form['page_vis_settings']['pages'] = array('#type' => 'value', '#value' => $edit['pages']); } else { - $options = array(t('Show on every page except the listed pages.'), t('Show on only the listed pages.')); + $options = array(t('Every page except those specified below.'), t('Only the pages specified below.')); $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '<front>')); if (module_exists('php') && $access) { |