Bug 22960: (RM follow-up) Correct a further typo
[koha.git] / installer / data / mysql / atomicupdate / bug_22960_fix_typo_in_syspref.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "UPDATE systempreferences SET explanation = REPLACE(explanation,'locaiton','location') WHERE variable = 'UpdateItemLocationOnCheckin'" );
4     SetVersion( $DBversion );
5     print "Upgrade to $DBversion done (Bug 22960: Fix typo in syspref description)\n";
6 }