Commit 9485cb895c00d449850c3fdb4d7c54ab923fc6a1

Authored by Martin Kirsten
1 parent a0e8d4c3

KTS-4016

"Document upload via KTAPI: special characters in Title are appearing as '-'"
Removed replacing of special characters

Committed By: Martin Kirsten
Reviewed By: Megan Watson

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@9697 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing 1 changed file with 2 additions and 1 deletions
ktapi/KTAPIFolder.inc.php
... ... @@ -738,7 +738,8 @@ class KTAPI_Folder extends KTAPI_FolderItem
738 738 return $user;
739 739 }
740 740  
741   - $title = KTUtil::replaceInvalidCharacters($title);
  741 + //KTS-4016: removed the replacing of special characters from the title as they should be allowed there
  742 + //$title = KTUtil::replaceInvalidCharacters($title);
742 743 $filename = basename($filename);
743 744 $filename = KTUtil::replaceInvalidCharacters($filename);
744 745 $documenttypeid = KTAPI::get_documenttypeid($documenttype);
... ...