Skip to content
Snippets Groups Projects
Commit 0ca73c3d authored by Peter Rotich's avatar Peter Rotich
Browse files

Use ticket status (state) to maintain queue view post mass action

parent 11c19a2d
No related branches found
No related tags found
No related merge requests found
......@@ -304,7 +304,7 @@ $negorder=$order=='DESC'?'ASC':'DESC'; //Negate the sorting..
<a class="refresh" href="<?php echo $_SERVER['REQUEST_URI']; ?>">Refresh</a>
<input type="hidden" name="a" value="mass_process" >
<input type="hidden" name="do" id="action" value="" >
<input type="hidden" name="status" value="<?php echo $status; ?>" >
<input type="hidden" name="status" value="<?php echo $_REQUEST['status']; ?>" >
<table class="list" border="0" cellspacing="1" cellpadding="2" width="940">
<caption><?php echo $showing; ?>&nbsp;&nbsp;&nbsp;<?php echo $results_type; ?></caption>
<thead>
......@@ -470,6 +470,11 @@ $negorder=$order=='DESC'?'ASC':'DESC'; //Negate the sorting..
<input class="button" type="submit" name="close" value="Close">
<?php
break;
case 'overdue':
?>
<input class="button" type="submit" name="close" value="Close">
<?php
break;
default: //search??
?>
<input class="button" type="submit" name="close" value="Close" >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment