users directory was searched for at the wrong place

This commit is contained in:
izzy 2000-08-22 17:11:11 +00:00
parent cb5fa5c77e
commit 2d69d4b0ac
3 changed files with 3 additions and 4 deletions

View File

@ -101,8 +101,7 @@
$sep = $phpgw->common->filesystem_sepeartor();
$basedir = $phpgw_info["server"]["server_root"] . $sep . "filemanager" . $sep . "users"
. $sep;
$basedir = $phpgw_info["server"]["files_dir"] . $sep . "users" . $sep;
if (! @rmdir($basedir . $lid)) {
$cd = 34;

View File

@ -71,8 +71,7 @@
$sep = $phpgw->common->filesystem_sepeartor();
$basedir = $phpgw_info["server"]["server_root"] . $sep . "filemanager" . $sep
. "users" . $sep;
$basedir = $phpgw_info["server"]["files_dir"] . $sep . "users" . $sep;
if (! @mkdir($basedir . $n_loginid, 0707)) {
$cd = 36;

View File

@ -2,6 +2,7 @@
Thanks Sam Wynn Jr <sam.wynn@lmco.com>
- on group creation the files directory tried to be created in
"filemanager/groups/" instead of in "files/groups/" - fixed.
Same for the user directory.
[08212000] - removed db_lock() and db_unlock() I changed the phpgw_db_* to use them
properly