@@ -, +, @@ --- installer/data/mysql/atomicupdate/bug_21656.perl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/installer/data/mysql/atomicupdate/bug_21656.perl +++ a/installer/data/mysql/atomicupdate/bug_21656.perl @@ -1,7 +1,8 @@ $DBversion = 'XXX'; # will be replaced by the RM if( CheckVersion( $DBversion ) ) { $dbh->do(q{ - UPDATE letter SET content = REPLACE(content,"item.reason ne \'in-demand\'","item.reason != \'in-demand\'"); + UPDATE letter SET content = REPLACE(content,"item.reason ne \'in-demand\'","item.reason != \'in-demand\'") + WHERE code="SR_SLIP"; }); print "Upgrade to $DBversion done (Bug 21656 - Stock Rotation Notice, Template Toolkit Syntax Correction)\n"; SetVersion( $DBversion ); --