03-23-2011, 08:11 PM
First of all, thanks for the bug reports.
Fixed in next release.
Fixed in next release
using isset() here will not work because $logname is set to NULL, so I check for a value in $logname.
Fixed in next release
I use PATH_SEPARATOR instead. That works on both Unix and Windows.
Fixed in next release.
Uwe
(03-23-2011, 03:25 AM)Doudoux Wrote: In "op/op.FolderAccess.php" file change line 95
toPHP Code:if (!is_object(getGroup($_GET["groupid"]))) {
PHP Code:if (!is_object($dms->getGroup($_GET["groupid"]))) {
Fixed in next release.
(03-23-2011, 03:25 AM)Doudoux Wrote: In "op/op.ManageNotify.php" file change line 30
toPHP Code:function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
$folder->addNotify($userid, true);
PHP Code:function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
global $dms;
$folder->addNotify($userid, true);
Fixed in next release
(03-23-2011, 03:25 AM)Doudoux Wrote: In "out/out.LogManagement.php" file change line 88
toPHP Code:if (file_exists($settings->_contentDir.$logname)){
PHP Code:if (isset($logname) && (file_exists($settings->_contentDir.$logname)) ) {
using isset() here will not work because $logname is set to NULL, so I check for a value in $logname.
(03-23-2011, 03:25 AM)Doudoux Wrote: In "Core/inc.ClassAccess.php" file add following lines, line 38, in LetoDMS_Core_UserAccess class
PHP Code:function isAdmin() {
return ($this->_mode == LetoDMS_Core_User::role_admin);
}
Fixed in next release
(03-23-2011, 03:25 AM)Doudoux Wrote: In "inc/inc.DBInit.php" file change line 22
toPHP Code:ini_set('include_path', $settings->_ADOdbPath.":".ini_get('include_path'));
PHP Code:ini_set('include_path', $settings->_ADOdbPath.";".ini_get('include_path'));
I use PATH_SEPARATOR instead. That works on both Unix and Windows.
(03-23-2011, 03:25 AM)Doudoux Wrote: If you use MySQL under Windows
In "inc.ClassDMS.php" file change line 220
toPHP Code:if(!array_search('tblVersion', $tbllist))
PHP Code:$tbllist = explode(',',strtolower(join(',',$tbllist)));
if(!array_search('tblversion', $tbllist))
Fixed in next release.
Uwe