Commit c400398be2393989d58abe7e8ce80edb1b608a09
1 parent
bba0be9f
Merged in from DEV trunk...
KTS-2790 "CLONE -Backslashes appear before every quote and double quote throughout our version of knowledgetree(SUP-532)" Updated. Removed C-style comment block from upgrade SQL. Committed by: Kevin Fourie Reviewed by: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.4.6-Release-Branch@7923 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
0 additions
and
4 deletions
sql/mysql/upgrade/3.4.6/remove_backslashes.sql
| 1 | -/* Script to remove back slashes from ' and " and \ | |
| 2 | - * From the welcome dashlet, folder names and document titles. | |
| 3 | - */ | |
| 4 | - | |
| 5 | 1 | UPDATE help_replacement |
| 6 | 2 | SET description = replace(replace(replace(description, '\\\\', '\\'), '\\\"', '\"'), '\\\'', '\''), |
| 7 | 3 | title = replace(replace(replace(title, '\\\\', '\\'), '\\\"', '\"'), '\\\'', '\''); | ... | ... |