diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-01-04 08:49:58 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-01-04 08:49:58 +0000 |
commit | 16ef5a8c28b298b27cdb21ec2b2a12d5c445bb02 (patch) | |
tree | 94f1b148c2cea1039a488212f90d648a261e37ab | |
parent | 6bff8959cf9ebe125378a7a8bdbae52fb06da390 (diff) |
Remove border attribute from table.
-rw-r--r-- | core/views/permissions_form.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/views/permissions_form.html.php b/core/views/permissions_form.html.php index 8c72bc94..6a977586 100644 --- a/core/views/permissions_form.html.php +++ b/core/views/permissions_form.html.php @@ -2,7 +2,7 @@ <form method="post" action="<?= url::site("permissions/edit/$item->id") ?>"> <?= access::csrf_form_field() ?> - <table border=1> + <table> <tr> <th> </th> <? foreach ($groups as $group): ?> @@ -20,7 +20,7 @@ <? $lock = access::locked_by($group, $permission->name, $item) ?> <? if ($lock): ?> - denied and locked by <a href="javascript:show(<?= $lock->id ?>)">parent</a> + <?= _("denied and locked by") ?> <a href="javascript:show(<?= $lock->id ?>)"><?= _("parent") ?></a> <? else: ?> <? if ($intent === null): ?> <? if ($allowed): ?> |