diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-05-26 09:21:10 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-05-26 09:21:10 +0000 |
commit | 02fa0d85b2eaf2b25b8eff07a996def15f2f3929 (patch) | |
tree | 50b6b60ff09f0005522582f8e1ad44403958208c /modules/taxonomy/taxonomy.module | |
parent | be6b7b0f1dcbb861115a385b07f8c814a2b40a1a (diff) | |
download | brdo-02fa0d85b2eaf2b25b8eff07a996def15f2f3929.tar.gz brdo-02fa0d85b2eaf2b25b8eff07a996def15f2f3929.tar.bz2 |
- Patch #18018 by dww, nedjo, tostinne, luke et al: block visibility by role.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index ba7827d70..0ee530d6b 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1147,7 +1147,7 @@ function taxonomy_render_nodes($result) { $output .= theme('pager', NULL, variable_get('default_nodes_main', 10), 0); } else { - $output .= t('There are currently no posts in this category.'); + $output .= '<p>'. t('There are currently no posts in this category.') .'</p>'; } return $output; } |