Advertisement
indradg

sampleupdatedb

Aug 25th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $DBversion = "XXX";
  2. if ( CheckVersion($DBversion) ) {
  3. $dbh->do("INSERT INTO systempreferences (variable,value,explanation,type) VALUES
  4. ('UsejQueryIMEonOPAC','0','','If ON, enables jQuery.ime input methods on the OPAC','YesNo')");
  5. $dbh->do("INSERT INTO systempreferences (variable,value,explanation,type) VALUES
  6. ('UsejQueryIMEonStaff','0','','If ON, enables jQuery.ime input methods on the staff client','YesNo')");
  7. print "Upgrade to $DBversion done (Bug 12815 - Adding support of jquery.ime to Koha)\n";
  8. SetVersion ($DBversion);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement