dbRev 130 : CAS System preference
authorHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 25 Nov 2009 11:18:44 +0000 (12:18 +0100)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 25 Nov 2009 11:20:16 +0000 (12:20 +0100)
Upgrade updatedatabase.pl and kohaversion

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index ea7f84a..3d4ecad 100755 (executable)
@@ -3291,7 +3291,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.01.00.128";
+$DBversion = "3.01.00.129";
 if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
        $dbh->do(qq{
                INSERT INTO `permissions` (`module_bit`, `code`, `description`) VALUES
@@ -3303,6 +3303,11 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion ($DBversion);
 }
 
+$DBversion = "3.01.00.130";
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+       $dbh->do("INSERT INTO `systempreferences` (`variable`, `value`, `options`, `explanation`, `type`) VALUES ('casAuthentication', '1', '', 'Enable or disable CAS authentication', 'YesNo'), ('casLogout', '1', '', 'Does a logout from Koha should also log out of CAS ?', 'YesNo'), ('casServerUrl', 'https://localhost:8443/cas', '', 'URL of the cas server', 'Free')");
+       print "Upgrade done (added CAS authentication system preferences)\n";
+}
 =item DropAllForeignKeys($table)
 
   Drop all foreign keys of the table $table
index 2ef1668..8d83cda 100644 (file)
@@ -10,7 +10,7 @@
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.01.00.128';
+    our $VERSION = '3.01.00.130';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install