diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 13:24:47 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 13:24:47 +0000 |
commit | 27c507aa645114acd38e3b05e31ffd2c27e242e8 (patch) | |
tree | 626f41b3f5d95ffac8e8ed7b8d8c0363698e5fb6 /mod/categories | |
parent | 5c1f26521ed42546d23f3968226fcb30e9f0a7db (diff) | |
download | elgg-27c507aa645114acd38e3b05e31ffd2c27e242e8.tar.gz elgg-27c507aa645114acd38e3b05e31ffd2c27e242e8.tar.bz2 |
Refs #2032 changed <p> to <div> for plugin settings
git-svn-id: http://code.elgg.org/elgg/trunk@9168 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/categories')
-rw-r--r-- | mod/categories/views/default/settings/categories/edit.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mod/categories/views/default/settings/categories/edit.php b/mod/categories/views/default/settings/categories/edit.php index 583292e72..3802da95a 100644 --- a/mod/categories/views/default/settings/categories/edit.php +++ b/mod/categories/views/default/settings/categories/edit.php @@ -14,8 +14,9 @@ if (empty($categories)) { } ?> -<p> - <?php echo elgg_echo('categories:explanation'); ?> -</p> +<div> + <p><?php echo elgg_echo('categories:explanation'); ?></p> <?php -echo elgg_view('input/tags', array('value' => $categories, 'name' => 'categories')); + echo elgg_view('input/tags', array('value' => $categories, 'name' => 'categories')); +?> +</div>
\ No newline at end of file |