Bug 16672: Fix typo unqiue vs unique
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 14 Jun 2016 09:15:58 +0000 (10:15 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 17 Jun 2016 15:45:54 +0000 (15:45 +0000)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
misc/cronjobs/cleanup_database.pl

index 1987fde..8ce0469 100755 (executable)
@@ -408,5 +408,5 @@ sub DeleteSpecialHolidays {
         WHERE DATE( CONCAT( year, '-', month, '-', day ) ) < DATE_SUB( CAST(NOW() AS DATE), INTERVAL ? DAY );
     });
     my $count = $sth->execute( $days ) + 0;
-    print "Removed $count unqiue holidays\n" if $verbose;
+    print "Removed $count unique holidays\n" if $verbose;
 }