Commit 1cd4058597351fbff643a0bc9343a7a5c589c24a
1 parent
27728b31
fixed bug relating to rolename on removeRole
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1112 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/removeRoleUI.inc
| ... | ... | @@ -111,7 +111,7 @@ function getReadableCheckBox($oRole) { |
| 111 | 111 | if (!isset($oRole)) { |
| 112 | 112 | return ""; |
| 113 | 113 | } else { |
| 114 | - return "<td>Role Name: </td><td><input type=\"checkbox\" name=\"fReadable\" " . ($oRole->getReadable() ? "CHECKED " : " ") . " />"; | |
| 114 | + return "<td>Readable: </td><td><input type=\"checkbox\" name=\"fReadable\" " . ($oRole->getReadable() ? "CHECKED " : " ") . " />"; | |
| 115 | 115 | } |
| 116 | 116 | } |
| 117 | 117 | |
| ... | ... | @@ -120,7 +120,7 @@ function getWriteableCheckBox($oRole) { |
| 120 | 120 | if (!isset($oRole)) { |
| 121 | 121 | return ""; |
| 122 | 122 | } else { |
| 123 | - return "<td>Role Name: </td><td><input type=\"checkbox\" name=\"fWritable\" " . ($oRole->getWriteable() ? "CHECKED " : " ") . " />"; | |
| 123 | + return "<td>Writable: </td><td><input type=\"checkbox\" name=\"fWritable\" " . ($oRole->getWriteable() ? "CHECKED " : " ") . " />"; | |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | } | ... | ... |