@@ -, +, @@ UPDATE systempreferences value=REPLACE(value, '|', ',') UPDATE systempreferences SET value=REPLACE(value, '|', ',') --- installer/data/mysql/atomicupdate/bug_27652.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/installer/data/mysql/atomicupdate/bug_27652.perl +++ a/installer/data/mysql/atomicupdate/bug_27652.perl @@ -3,7 +3,7 @@ if( CheckVersion( $DBversion ) ) { $dbh->do(q{ UPDATE systempreferences - value=REPLACE(value, '|', ',') + SET value=REPLACE(value, '|', ',') WHERE variable="OPACHoldsIfAvailableAtPickupExceptions" OR variable="BatchCheckoutsValidCategories" }); --