diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-25 22:00:58 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-25 22:00:58 +0000 |
commit | 18d7cd4c01a71e1304b2e9e782d0490ca2e6e5a9 (patch) | |
tree | 00c7f02ecb908ca7820912f31208dbeaf1c0c734 /h-source/Application/Views | |
parent | b1ee308d12b28adf851b04946237bbc5a91c822d (diff) |
improved the way issues are sorted
Diffstat (limited to 'h-source/Application/Views')
-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) |