Bug 29204: (QA follow-up) Fix variable name
authorJoonas Kylmälä <joonas.kylmala@iki.fi>
Sat, 6 Nov 2021 14:16:38 +0000 (14:16 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 15 Nov 2021 11:38:39 +0000 (12:38 +0100)
The patch "Bug 29204: Fix reports/issues_stats.pl for MySQL 8"
accidentally changed the variable name from $strsth2 to $strsth

Signed-off-by: Joonas Kylmälä <joonas.kylmala@iki.fi>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
reports/issues_stats.pl

index a9f6716..f5209b2 100755 (executable)
@@ -401,8 +401,8 @@ sub calculate {
           ( $colsource eq 'items' )
           ? "LEFT JOIN items ON (statistics.itemnumber = items.itemnumber) "
           : "LEFT JOIN borrowers ON (statistics.borrowernumber = borrowers.borrowernumber) ";
-        $strsth .= " WHERE $column IS NOT NULL";
-        $strsth .= " AND $column != '' " if $column ne "datetime";
+        $strsth2 .= " WHERE $column IS NOT NULL";
+        $strsth2 .= " AND $column != '' " if $column ne "datetime";
     }
 
     if ( $column =~ /datetime/ ) {