From 3f13c7cc2bfc0d10393ff9198d22e34c000bdd45 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 10 Feb 2026 12:15:30 +0100 Subject: [PATCH] fix sorting by month --- views/bootstrap/class.Charts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/bootstrap/class.Charts.php b/views/bootstrap/class.Charts.php index 70d14f94c..06eed4d2d 100644 --- a/views/bootstrap/class.Charts.php +++ b/views/bootstrap/class.Charts.php @@ -349,7 +349,7 @@ $(document).ready( function() { $oldtotal = 0; foreach($data as $item) { echo ""; - echo "".htmlspecialchars($item['key']).""; + echo "".htmlspecialchars($item['key']).""; echo "".$item['total'].""; if(in_array($type, array('docspermonth'))) echo "".sprintf('%+d', $item['total']-$oldtotal)."";