Bug 2410: Can't use string ("0") as an ARRAY ref while "strict refs" in use at detail...
[koha-ffzg.git] / kohaversion.pl
index abda80c..582aa2c 100644 (file)
@@ -7,8 +7,14 @@
 #        used by developers when the database changes. updatedatabase take care of the changes itself
 #        and is automatically called by Auth.pm when needed.
 
+use strict;
+
 sub kohaversion {
-    return "3.00.00.025";
+    our $VERSION = '3.00.00.107';
+    # version needs to be set this way
+    # so that it can be picked up by Makefile.PL
+    # during install
+    return $VERSION;
 }
 
 1;