From: Chris Cormack Date: Tue, 20 Nov 2007 18:44:35 +0000 (-0600) Subject: Fix for if instead of while in the installer X-Git-Tag: v3.00.00-alpha~383^2~53 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=b17840b95cd827903721838c767828d839b3e8c0;p=koha_ffzg Fix for if instead of while in the installer Signed-off-by: Galen Charlton --- diff --git a/Makefile.PL b/Makefile.PL index 7033e6006f..76eb8f5369 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -96,7 +96,7 @@ while ($marc_value ne 'marc21' && $marc_value ne 'unimarc'){ my $message= "Chose your flavour of MARC, unimarc or marc21 [marc21]"; $marc_value=prompt($message) || 'marc21'; } -if ($lang_value ne 'en' && $lang_value ne 'fr'){ +while ($lang_value ne 'en' && $lang_value ne 'fr'){ my $message= "Choose your language, en or fr [en]"; $lang_value=prompt($message) || 'en'; }