Skip to content

Commit

Permalink
Merge pull request PrestaShop#22212 from eternoendless/fix-missing-comma
Browse files Browse the repository at this point in the history
Fix missing comma in 1.7.8.0 update script
  • Loading branch information
sowbiba authored Dec 3, 2020
2 parents 7632af1 + 2c2ae00 commit 03435ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-dev/upgrade/sql/1.7.8.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ INSERT IGNORE INTO `PREFIX_hook` (`id_hook`, `name`, `title`, `description`, `po
(NULL, 'actionModuleUninstallBefore', 'Module uninstall before', 'This hook is called before module uninstall process', '1'),
(NULL, 'actionModuleUninstallAfter', 'Module uninstall after', 'This hook is called at the end of module uninstall process', '1'),
(NULL, 'displayCartModalContent', 'Cart Presenter', 'This hook displays content in the middle of the window that appears after adding product to cart', '1'),
(NULL, 'displayCartModalFooter', 'Cart Presenter', 'This hook displays content in the bottom of window that appears after adding product to cart', '1')
(NULL, 'displayCartModalFooter', 'Cart Presenter', 'This hook displays content in the bottom of window that appears after adding product to cart', '1'),
(NULL, 'actionCheckoutRender', 'Checkout process render', 'This hook is called when checkout process is constructed', '1'),
(NULL, 'actionPresentProductListing', 'Product Listing Presenter', 'This hook is called before a product listing is presented', '1'),
(NULL, 'actionGetProductPropertiesAfterUnitPrice', 'Product Properties', 'This hook is called after defining the properties of a product', '1'),
Expand Down

0 comments on commit 03435ef

Please sign in to comment.