- Changed Manage Revisions screen to order revisions by descending revision
date.
This commit is contained in:
parent
239e68d476
commit
f43fb782f4
2 changed files with 3 additions and 1 deletions
|
|
@ -10,6 +10,8 @@
|
|||
- fix: Linking Pages
|
||||
- Enhanced HTTP caching directives.
|
||||
- Fixed a problem with JSON formatting in spectre config transaction.
|
||||
- Changed Manage Revisions screen to order revisions by descending revision
|
||||
date.
|
||||
- fix: Fixing bad link on the Event page to the search engine. Added a new
|
||||
Event template variable called urlSearch to handle it. (perlDreamer Consulting, LLC)
|
||||
- fix: Set default groupIdEditEvent to groupIdEdit during upgrade (perlDreamer Consulting, LLC)
|
||||
|
|
|
|||
|
|
@ -456,7 +456,7 @@ sub www_manageRevisions {
|
|||
$i18n->get('revision date'), $i18n->get('revised by'), $i18n->get('tag name');
|
||||
my $sth = $self->session->db->read("select assetData.revisionDate, users.username, assetVersionTag.name,assetData.tagId from assetData
|
||||
left join assetVersionTag on assetData.tagId=assetVersionTag.tagId left join users on assetData.revisedBy=users.userId
|
||||
where assetData.assetId=".$self->session->db->quote($self->getId));
|
||||
where assetData.assetId=? order by revisionDate desc", [$self->getId]);
|
||||
while (my ($date,$by,$tag,$tagId) = $sth->array) {
|
||||
$output .= '<tr><td>'
|
||||
.$self->session->icon->delete("func=purgeRevision;revisionDate=".$date,$self->get("url"),$i18n->get("purge revision prompt"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue