Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
(Resolved) [LetoDMS-3.0.0-RC3] - Known bugs and their correction
#2
First of all, thanks for the bug reports.

(03-23-2011, 03:25 AM)Doudoux Wrote: In "op/op.FolderAccess.php" file change line 95

PHP Code:
if (!is_object(getGroup($_GET["groupid"]))) { 
to
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

PHP Code:
function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
    
$folder->addNotify($useridtrue); 
to
PHP Code:
function add_folder_notify($folder,$userid,$recursefolder,$recursedoc) {
    global 
$dms;
  
    
$folder->addNotify($useridtrue); 

Fixed in next release

(03-23-2011, 03:25 AM)Doudoux Wrote: In "out/out.LogManagement.php" file change line 88

PHP Code:
if (file_exists($settings->_contentDir.$logname)){ 
to
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

PHP Code:
ini_set('include_path'$settings->_ADOdbPath.":".ini_get('include_path')); 
to
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
PHP Code:
if(!array_search('tblVersion'$tbllist)) 
to
PHP Code:
$tbllist explode(',',strtolower(join(',',$tbllist)));
if(!
array_search('tblversion'$tbllist)) 

Fixed in next release.

Uwe
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: