Commit ddaa9bfa6dacc353c88f4850f4adf3318483c887
1 parent
4b20daa4
Changed insertFolder to createFolder
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@230 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/foldermanagement/FolderManager.inc
| ... | ... | @@ -26,7 +26,7 @@ class FolderManager { |
| 26 | 26 | * |
| 27 | 27 | * @return true on sucessful insertion, false otherwise and set $_SESSION["errorMessage"] |
| 28 | 28 | */ |
| 29 | - function insertFolder($sName, $sDescription, $iParentID, $iCreatorID, $iDocumentTypeID, $iUnitID, $bIsPublic = false) { | |
| 29 | + function createFolder($sName, $sDescription, $iParentID, $iCreatorID, $iDocumentTypeID, $iUnitID, $bIsPublic = false) { | |
| 30 | 30 | $sName = addslashes($sName); |
| 31 | 31 | $sDescription = addslashes($sDescription); |
| 32 | 32 | global $default, $lang_err_database; | ... | ... |