Commit de993d01acc72751e58b959f150f2f55da4e1665
1 parent
c400398b
Merged in from DEV trunk...
KTS-2790 "CLONE -Backslashes appear before every quote and double quote throughout our version of knowledgetree(SUP-532)" Fixed. Removed the sanitiseForSql function call. Committed by: Megan Watson Reviewed by: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.4.6-Release-Branch@7925 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
2 deletions
lib/foldermanagement/folderutil.inc.php
| ... | ... | @@ -51,8 +51,8 @@ class KTFolderUtil { |
| 51 | 51 | } |
| 52 | 52 | $oStorage =& KTStorageManagerUtil::getSingleton(); |
| 53 | 53 | $oFolder =& Folder::createFromArray(array( |
| 54 | - 'name' => sanitizeForSQL($sFolderName), | |
| 55 | - 'description' => sanitizeForSQL($sFolderName), | |
| 54 | + 'name' => ($sFolderName), | |
| 55 | + 'description' => ($sFolderName), | |
| 56 | 56 | 'parentid' => $oParentFolder->getID(), |
| 57 | 57 | 'creatorid' => $oUser->getID(), |
| 58 | 58 | )); | ... | ... |