04-09-2011, 04:50 AM
(This post was last modified: 04-11-2011, 03:12 AM by administrator.)
Hi
In "out/out.KeywordChooser.php" file change line 34
to
In "out.BackupTools.php" file change lines 118 and 173
to
In "op.Login.php" file change line 153
to
Other post
"Show all results" error => It will be fixed before the final release of 3.0.0.
Invalid start date for creation date range => It will be fixed before the final release of 3.0.0.
LetoDMS download file problem, doc, xls. jpg
Errors in Backup Tools when creating Human Readable Archive
[BackupTools] - Human readable archive
Function is deprecated => In "inc.ClassDMS.php" file change line 415
to
Function is deprecated => In "inc/inc.ClassSession.php" file change line 75
to
see http://www.php.net/manual/en/function.mktime.php
Doudoux
In "out/out.KeywordChooser.php" file change line 34
PHP Code:
$categories = $dms->getAllKeywordCategories($userids);^M
PHP Code:
$categories = $dms->getAllKeywordCategories($userids);
In "out.BackupTools.php" file change lines 118 and 173
PHP Code:
print "<td>".getLongReadableDate($entry)."</td>\n";
PHP Code:
print "<td>".getLongReadableDate(filemtime($settings->_contentDir.$entry))."</td>\n";
In "op.Login.php" file change line 153
PHP Code:
$user = addUser($login, null, $info[0]['cn'][0], $info[0]['mail'][0], $settings->_language, $settings->_theme, "");
PHP Code:
$user = addUser($login, null, sanitizeString($info[0]['cn'][0]), $info[0]['mail'][0], $settings->_language, $settings->_theme, "");
Other post
"Show all results" error => It will be fixed before the final release of 3.0.0.
Invalid start date for creation date range => It will be fixed before the final release of 3.0.0.
LetoDMS download file problem, doc, xls. jpg
Errors in Backup Tools when creating Human Readable Archive
[BackupTools] - Human readable archive
Function is deprecated => In "inc.ClassDMS.php" file change line 415
PHP Code:
$tkeys = split("[\t\r\n ,]+", $query);
PHP Code:
$tkeys = preg_split("/[\t\r\n ,]+/", $query);
Function is deprecated => In "inc/inc.ClassSession.php" file change line 75
PHP Code:
$queryStr = "UPDATE tblSessions SET lastAccess = " . mktime(). " WHERE id = '" . $id . "'";
PHP Code:
$queryStr = "UPDATE tblSessions SET lastAccess = " . time(). " WHERE id = '" . $id . "'";
Doudoux