Skip to content

Commit

Permalink
Continuing adding new features
Browse files Browse the repository at this point in the history
  • Loading branch information
ranginui committed Jul 13, 2012
1 parent 480d29b commit 99b333b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/KC/Dashboard.pm
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ get '/' => sub {
$sth->execute or die $sth->errstr; $sth->execute or die $sth->errstr;
my $daybefore = $sth->fetchrow_hashref(); my $daybefore = $sth->fetchrow_hashref();
$sql = "SELECT bugs.bug_id,short_desc FROM bugs,bugs_activity WHERE bugs.bug_id = bugs_activity.bug_id $sql = "SELECT bugs.bug_id,short_desc FROM bugs,bugs_activity WHERE bugs.bug_id = bugs_activity.bug_id
AND added = 'Pushed to Master' AND bug_severity = 'enhancement' ORDER BY bug_when LIMIT 5"; AND added = 'Pushed to Master' AND bug_severity = 'enhancement' ORDER BY bug_when desc LIMIT 5";
$sth = database->prepare($sql) or die database->errstr; $sth = database->prepare($sql) or die database->errstr;
$sth->execute or die $sth->errstr; $sth->execute or die $sth->errstr;
my $enhancement = $sth->fetchall_arrayref; my $enhancement = $sth->fetchall_arrayref;
Expand Down

0 comments on commit 99b333b

Please sign in to comment.