mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-10 11:02:41 +00:00
add expired status to list of status without access
This commit is contained in:
parent
87bbb6bf44
commit
3ddd24c7cd
|
@ -154,7 +154,7 @@ $(document).ready( function() {
|
||||||
echo "<tr>";
|
echo "<tr>";
|
||||||
echo "<td>".getMLText('restrict_access')."</td>";
|
echo "<td>".getMLText('restrict_access')."</td>";
|
||||||
echo "<td>";
|
echo "<td>";
|
||||||
foreach(array(S_DRAFT_REV, S_DRAFT_APP, S_IN_WORKFLOW, S_REJECTED, S_RELEASED, S_IN_REVISION, S_DRAFT, S_OBSOLETE) as $status) {
|
foreach(array(S_DRAFT_REV, S_DRAFT_APP, S_IN_WORKFLOW, S_REJECTED, S_RELEASED, S_IN_REVISION, S_DRAFT, S_EXPIRED, S_OBSOLETE) as $status) {
|
||||||
echo "<input type=\"checkbox\" name=\"noaccess[]\" value=\"".$status."\" ".(in_array($status, $currRole->getNoAccess()) ? "checked" : "")."> ".getOverallStatusText($status)."<br />";
|
echo "<input type=\"checkbox\" name=\"noaccess[]\" value=\"".$status."\" ".(in_array($status, $currRole->getNoAccess()) ? "checked" : "")."> ".getOverallStatusText($status)."<br />";
|
||||||
}
|
}
|
||||||
echo "</td>";
|
echo "</td>";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user