Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
(Resolved) [LetoDMS-3.0.0-RC3] - Known bugs and their correction
#3
Hi

Thanks Uwe

Here is a new set of bugs posted in the forum.
I think I made ​​the tour :-)

In "inc/inc.ClassSession.php" file change line 75
PHP Code:
$queryStr "UPDATE tblSessions SET lastAccess = " mktime(). " WHERE id = '" $id "'"
to
PHP Code:
$queryStr "UPDATE tblSessions SET lastAccess = " time(). " WHERE id = '" $id "'"
see http://www.php.net/manual/en/function.mktime.php


In "out/out.KeywordChooser.php" file change line 34
PHP Code:
$categories $dms->getAllKeywordCategories($userids);^
to
PHP Code:
$categories $dms->getAllKeywordCategories($userids); 


In "out/out.UserDefaultKeywords.php" file change line 70
PHP Code:
if ($category->getID()==$_GET["categoryid"]) $selected=$count
to
PHP Code:
if (isset($_GET["categoryid"]) && $category->getID()==$_GET["categoryid"]) $selected=$count

Doudoux
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: