Commit 1bcf461889dd054a6b802b0cb62f84f339e94ec6

Authored by nbm
1 parent 62a965f6

Get rid of debug var_dumps.


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3613 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/storage/ondiskpathstoragemanager.inc.php
@@ -48,8 +48,6 @@ class KTOnDiskPathStorageManager extends KTStorageManager { @@ -48,8 +48,6 @@ class KTOnDiskPathStorageManager extends KTStorageManager {
48 $oDocument->setFileSize(filesize($sTmpFilePath)); 48 $oDocument->setFileSize(filesize($sTmpFilePath));
49 $sDocumentFileSystemPath = sprintf("%s/%s", $oConfig->get('urls/documentRoot'), $this->getPath($oDocument)); 49 $sDocumentFileSystemPath = sprintf("%s/%s", $oConfig->get('urls/documentRoot'), $this->getPath($oDocument));
50 //copy the file accross 50 //copy the file accross
51 - var_dump($sTmpFilePath);  
52 - var_dump($sDocumentFileSystemPath);  
53 if (copy($sTmpFilePath, $sDocumentFileSystemPath)) { 51 if (copy($sTmpFilePath, $sDocumentFileSystemPath)) {
54 //remove the temporary file 52 //remove the temporary file
55 unlink($sTmpFilePath); 53 unlink($sTmpFilePath);