diff options
author | Anika Henke <anika@selfthinker.org> | 2012-02-04 13:26:50 +0000 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-02-04 13:26:50 +0000 |
commit | c7b28ffda48d3e6e225940a74b00ee5011f45b4b (patch) | |
tree | cc79839ec6a31797d6be184df8c928e9cfff297f /lib/plugins/acl/admin.php | |
parent | ae6cce187876439c77b53ebd2ae61976274f4a11 (diff) | |
download | rpg-c7b28ffda48d3e6e225940a74b00ee5011f45b4b.tar.gz rpg-c7b28ffda48d3e6e225940a74b00ee5011f45b4b.tar.bz2 |
added div.table around non-editable content as well (FS#1980)
Diffstat (limited to 'lib/plugins/acl/admin.php')
-rw-r--r-- | lib/plugins/acl/admin.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/plugins/acl/admin.php b/lib/plugins/acl/admin.php index a6b0624bc..c3461b78b 100644 --- a/lib/plugins/acl/admin.php +++ b/lib/plugins/acl/admin.php @@ -597,6 +597,7 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { echo '<input type="hidden" name="do" value="admin" />'.NL; echo '<input type="hidden" name="page" value="acl" />'.NL; echo '<input type="hidden" name="sectok" value="'.getSecurityToken().'" />'.NL; + echo '<div class="table">'; echo '<table class="inline">'; echo '<tr>'; echo '<th>'.$this->getLang('where').'</th>'; @@ -642,6 +643,7 @@ class admin_plugin_acl extends DokuWiki_Admin_Plugin { echo '</th>'; echo '</tr>'; echo '</table>'; + echo '</div>'; echo '</div></form>'.NL; } |