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



In "op/op.ManageNotify.php" file change line 30

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

$folder->addNotify($userid, true);


In "out/out.LogManagement.php" file change line 88

PHP Code:
<?php 
if (file_exists($settings->_contentDir.$logname)){
to
PHP Code:
<?php 
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:
<?php 
function isAdmin() {
return (
$this->_mode == LetoDMS_Core_User::role_admin);
}



In "inc/inc.DBInit.php" file change line 22

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