Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
(Resolved) [LetoDMS-3.0.0-RC3] - Known bugs and their correction
#1
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"]))) { 



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); 


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)) ) { 



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);
  } 



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')); 


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)) 


Doudoux
Reply


Messages In This Thread
(Resolved) [LetoDMS-3.0.0-RC3] - Known bugs and their correction - by Doudoux - 03-23-2011, 03:25 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)