Merge remote-tracking branch 'kc/new/bug_6390' into kcmaster
authorChris Cormack <chrisc@catalyst.net.nz>
Mon, 17 Oct 2011 20:45:39 +0000 (09:45 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Mon, 17 Oct 2011 20:45:39 +0000 (09:45 +1300)
installer/data/mysql/updatedatabase.pl

index 93f9fce..f8a7549 100755 (executable)
@@ -4516,6 +4516,13 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.05.00.XXX";
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    $dbh->do("INSERT INTO `systempreferences` (variable,value,options,explanation,type) VALUES ('AcqViewBaskets','user','user|branch|all','Define which baskets a user is allowed to view: his own only, any within his branch or all','Choice')");
+    print "Upgrade to $DBversion done (Add syspref AcqViewBaskets)\n";
+    SetVersion($DBversion);
+}
+
 
 =head1 FUNCTIONS