Bug 10572: Add phone to message_transport_types table for new installs
[koha.git] / misc / perlmodule_ls.pl
index 6ffcc52..d381b6e 100755 (executable)
@@ -1,11 +1,12 @@
 #!/usr/bin/perl
 
-#use strict;
-#use warnings; FIXME - Bug 2505
+use strict;
+use warnings;
 
 use ExtUtils::Installed;
+
 my $instmod = ExtUtils::Installed->new();
 foreach my $module ($instmod->modules()) {
-my $version = $instmod->version($module) || "???";
-       print "$module -- $version\n";
+    my $version = $instmod->version($module) || "???";
+    print "$module -- $version\n";
 }