Bug 21656: (follow-up) Fix atomicupdate
[koha.git] / installer / data / mysql / atomicupdate / bug_21656.perl
1 $DBversion = 'XXX';  # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do(q{
4         UPDATE letter SET content = REPLACE(content,"item.reason ne \'in-demand\'","item.reason != \'in-demand\'");
5     });
6     print "Upgrade to $DBversion done (Bug 21656 - Stock Rotation Notice, Template Toolkit Syntax Correction)\n";
7     SetVersion( $DBversion );
8 }