From: Eric Bollengier Date: Mon, 13 Nov 2006 18:42:47 +0000 (+0000) Subject: ebl fix display_log to use LogId instead of Time for order X-Git-Tag: Release-2.0.0~301 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a8bfd1b9d58ab5829aa101438eafeafbc0cf6c71;p=bacula%2Fbacula ebl fix display_log to use LogId instead of Time for order git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3616 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/gui/bweb/lib/Bweb.pm b/gui/bweb/lib/Bweb.pm index d9b6a1aac5..5e91bbb7b2 100644 --- a/gui/bweb/lib/Bweb.pm +++ b/gui/bweb/lib/Bweb.pm @@ -2899,7 +2899,7 @@ SELECT Job.Name as name, Client.Name as clientname SELECT Time AS time, LogText AS log FROM Log WHERE JobId = $arg->{jobid} - ORDER BY Time + ORDER BY LogId "; my $log = $self->dbh_selectall_arrayref($query); unless ($log) {