Bug 27652: (follow-up) Correct typo in database update
authorOwen Leonard <oleonard@myacpl.org>
Wed, 10 Feb 2021 18:58:57 +0000 (18:58 +0000)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 9 Mar 2021 16:20:47 +0000 (17:20 +0100)
commit6b25e526bfeee0b4537e132caca32a10d2ade4e7
treef9d01048117e20c2407992758ad38d66e2de12a5
parent010181a6a007339edc4ed63d50cc8ba33fe0f5ab
Bug 27652: (follow-up) Correct typo in database update

This patch adds a missing "SET" in the database update. Before:

   UPDATE systempreferences
   value=REPLACE(value, '|', ',')

Corrected:

   UPDATE systempreferences
   SET value=REPLACE(value, '|', ',')

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
installer/data/mysql/atomicupdate/bug_27652.perl