From 4cdf6af7d78525a675365d930a730a6092b667e3 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 3 Oct 2010 15:55:45 +0000 Subject: [PATCH] New: A lot of enhancements into ECM module. Dir can contains special characters. Speed enhancements. Dir can be created outside of dolibarr, the refresh button will update database. --- htdocs/ecm/index.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/htdocs/ecm/index.php b/htdocs/ecm/index.php index 1fd21ea26b4..2d45359c9db 100644 --- a/htdocs/ecm/index.php +++ b/htdocs/ecm/index.php @@ -208,7 +208,7 @@ if (GETPOST("action") == 'refreshmanual') { $txt="Directory found on disk ".$dirdesc['fullname'].", not found into database so we add it"; dol_syslog($txt); - print $txt."
\n"; + //print $txt."
\n"; // We must first find the fk_parent of directory to create $dirdesc['fullname'] $fk_parent=-1; @@ -221,7 +221,7 @@ if (GETPOST("action") == 'refreshmanual') $relativepathtosearchparent=preg_replace('/\/[^\/]*$/','',$relativepathtosearchparent); $txt="Is relative parent path ".$relativepathtosearchparent." for ".$relativepathmissing." found in sql tree ?"; dol_syslog($txt); - print $txt." -> "; + //print $txt." -> "; $parentdirisindatabase=0; foreach($sqltree as $dirsqldesc) { @@ -234,14 +234,14 @@ if (GETPOST("action") == 'refreshmanual') if ($parentdirisindatabase > 0) { dol_syslog("Yes with id ".$parentdirisindatabase); - print "Yes with id ".$parentdirisindatabase."
\n"; + //print "Yes with id ".$parentdirisindatabase."
\n"; $fk_parent=$parentdirisindatabase; //break; // We found parent, we can stop the while loop } else { dol_syslog("No"); - print "No
\n"; + //print "No
\n"; } } else @@ -259,9 +259,8 @@ if (GETPOST("action") == 'refreshmanual') $txt="We create directory ".$ecmdirtmp->label." with parent ".$fk_parent; dol_syslog($txt); - print $txt."
\n"; + //print $txt."
\n"; $id = $ecmdirtmp->create($user); - //$id=999; if ($id > 0) { $newdirsql=array('id'=>$id, @@ -277,7 +276,7 @@ if (GETPOST("action") == 'refreshmanual') else { $txt="Parent of ".$dirdesc['fullname']." not found"; dol_syslog($txt); - print $txt."
\n"; + //print $txt."
\n"; } } }