Skip to content

Commit

Permalink
Correction after PR #9652
Browse files Browse the repository at this point in the history
1. Use post-update version for check of version number in extensions
table - it seems on update the version is updated in the extensions
table before the schema update sql scripts are executed.
2. Add forgotten name quoting for column "converted"
  • Loading branch information
richard67 committed Mar 29, 2016
1 parent 891d5a5 commit 8666091
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -3,4 +3,4 @@
-- to force a new conversion when updating from version 3.5.0
--

UPDATE `#__utf8_conversion` SET converted = 0 WHERE (SELECT COUNT(*) FROM `#__extensions` WHERE `extension_id`=700 AND `manifest_cache` LIKE '%"version":"3.5.0"%') = 1;
UPDATE `#__utf8_conversion` SET `converted` = 0 WHERE (SELECT COUNT(*) FROM `#__extensions` WHERE `extension_id`=700 AND `manifest_cache` LIKE '%"version":"3.5.1%') = 1;

0 comments on commit 8666091

Please sign in to comment.