From: Joe Hunt Date: Sun, 20 Dec 2015 15:40:59 +0000 (+0100) Subject: Rerun of last commit. A minor bug was detected. X-Git-Tag: v2.4.2~19^2~86 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=2d389d0e776eded2408a760edb434f7a085b7da5;p=fa-stable.git Rerun of last commit. A minor bug was detected. --- diff --git a/includes/dashboard.inc b/includes/dashboard.inc index 4b552cfb..b4b847d4 100644 --- a/includes/dashboard.inc +++ b/includes/dashboard.inc @@ -413,8 +413,8 @@ function gl_performance($today, $width="33", $weeks=5) while ($myrow = db_fetch($result)) { $pg->x[$i] = $myrow['week_name']; - $pg->y[$i] = abs($myrow['sales']); - $pg->z[$i] = abs($myrow['costs']); + $pg->y[$i] = $myrow['sales']; + $pg->z[$i] = $myrow['costs']; $i++; } $pg->x = array_reverse($pg->x);