Commit 19cba890d49a557c872f947b8c8a7c640da914c8

Authored by michael
1 parent 52ca4230

removed debug logging


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@958 c91229c3-7414-0410-bfa2-8a42b809f60b
lib/documentmanagement/DocumentBrowser.inc
... ... @@ -68,7 +68,6 @@ class DocumentBrowser {
68 68 // get the folder
69 69 $results["folders"][] = & Folder::get($folderID);
70 70 if ($results["folders"][0]) {
71   - $default->log->debug("DocumentBrowser::browseByFolder: results=" . arrayToString($results));
72 71  
73 72 // now find all the child folders relative to this one
74 73 // FIXME: in the same unit?
... ... @@ -80,7 +79,6 @@ class DocumentBrowser {
80 79 $results["folders"][] = & Folder::get($sql->f("id"));
81 80 }
82 81 }
83   - $default->log->debug("DocumentBrowser::browseByFolder: after child folders added; results=" . arrayToString($results));
84 82  
85 83 // create query to retrieve documents in this folder
86 84 $documentQuery = "SELECT id FROM $default->owl_documents_table WHERE folder_id=$folderID ORDER BY name ASC";
... ...