From e81edae6e02d7f727d2cb4fa9cbd2ad9c0fe1e5a Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Mon, 24 Feb 2020 15:17:56 +0100
Subject: [PATCH] Bug 24696: Use strftime

Seems easier to me.

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
---
 installer/data/mysql/updatedatabase.pl | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl
index 63c9d6af1e..f57cfb88c4 100755
--- a/installer/data/mysql/updatedatabase.pl
+++ b/installer/data/mysql/updatedatabase.pl
@@ -21154,8 +21154,7 @@ sub NewVersion {
         $descriptions = [ $descriptions ];
     }
     my $first = 1;
-    my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
-    my $time = sprintf ( "%02d:%02d:%02d", $hour,$min,$sec);
+    my $time = POSIX::strftime("%H:%M:%S",localtime);
     for my $description ( @$descriptions ) {
         if ( @$descriptions > 1 ) {
             if ( $first ) {
-- 
2.20.1