03-15-2011, 03:57 AM
Hi
In "op.FolderAccess.php" file change line 95
to
In "op.ManageNotify.php" file change line 30
to
In "out.LogManagement.php" file change line 88
to
Doudoux
In "op.FolderAccess.php" file change line 95
PHP Code:
if (!is_object(getGroup($_GET["groupid"]))) {
PHP Code:
if (!is_object($dms->getGroup($_GET["groupid"]))) {
In "op.ManageNotify.php" file change line 30
PHP 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);
In "out.LogManagement.php" file change line 88
PHP Code:
if (file_exists($settings->_contentDir.$logname)){
PHP Code:
if (isset($logname) && (file_exists($settings->_contentDir.$logname)) ) {
Doudoux