Commit 1cd4058597351fbff643a0bc9343a7a5c589c24a

Authored by mukhtar
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
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/removeRoleUI.inc
@@ -111,7 +111,7 @@ function getReadableCheckBox($oRole) { @@ -111,7 +111,7 @@ function getReadableCheckBox($oRole) {
111 if (!isset($oRole)) { 111 if (!isset($oRole)) {
112 return ""; 112 return "";
113 } else { 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,7 +120,7 @@ function getWriteableCheckBox($oRole) {
120 if (!isset($oRole)) { 120 if (!isset($oRole)) {
121 return ""; 121 return "";
122 } else { 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 }