diff options
Diffstat (limited to 'h-source/Application/Views/Issues/viewall.php')
-rw-r--r-- | h-source/Application/Views/Issues/viewall.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/h-source/Application/Views/Issues/viewall.php b/h-source/Application/Views/Issues/viewall.php index 73ab0c0..b47294f 100644 --- a/h-source/Application/Views/Issues/viewall.php +++ b/h-source/Application/Views/Issues/viewall.php @@ -44,11 +44,10 @@ <table class="issues_viewall_table"> <thead> <tr> - <th>ID</th> <th><?php echo gtext("TITLE");?></th> <th><?php echo gtext("TOPIC");?></th> <th><?php echo gtext("OPENED BY");?></th> - <th><?php echo gtext("DATE");?></th> + <th><?php echo gtext("LAST UPDATE");?></th> <th><?php echo gtext("REPLIES");?></th> <th><?php echo gtext("PRIORITY");?></th> <th><?php echo gtext("STATUS");?></th> @@ -57,11 +56,10 @@ <?php foreach ($table as $row) { ?> <tr> - <td><?php echo $row['issues']['id_issue'];?></td> <td><a href="<?php echo $this->baseUrl."/issues/view/$lang/".$row['issues']['id_issue'].$this->viewStatus;?>"><?php echo $row['issues']['title'];?></a></td> <td><?php echo str_replace('-',' ',$row['issues']['topic']);?></td> <td><?php echo getLinkToUser($u->getUser($row['issues']['created_by']));?></td> - <td><?php echo smartDate($row['issues']['creation_date']);?></td> + <td><?php echo smartDate($row['issues']['update_date']);?></td> <td> <?php if (strcmp($row['messages']['message'],'') !== 0) |