Use the summernote editor for product description (closes #288)

This commit is contained in:
Bernd Bestel
2019-08-15 14:35:28 +02:00
parent 257dd644aa
commit f9036f0248
9 changed files with 20 additions and 27 deletions

8
migrations/0080.sql Normal file
View File

@@ -0,0 +1,8 @@
UPDATE products
SET description = REPLACE(description, CHAR(13) + CHAR(10), '<br>');
UPDATE products
SET description = REPLACE(description, CHAR(13), '<br>');
UPDATE products
SET description = REPLACE(description, CHAR(10), '<br>');