03-24-2011, 03:34 AM
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
to
see http://www.php.net/manual/en/function.mktime.php
In "out/out.KeywordChooser.php" file change line 34
to
In "out/out.UserDefaultKeywords.php" file change line 70
to
Doudoux
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 . "'";
PHP Code:
$queryStr = "UPDATE tblSessions SET lastAccess = " . time(). " WHERE id = '" . $id . "'";
In "out/out.KeywordChooser.php" file change line 34
PHP Code:
$categories = $dms->getAllKeywordCategories($userids);^M
PHP Code:
$categories = $dms->getAllKeywordCategories($userids);
In "out/out.UserDefaultKeywords.php" file change line 70
PHP Code:
if ($category->getID()==$_GET["categoryid"]) $selected=$count;
PHP Code:
if (isset($_GET["categoryid"]) && $category->getID()==$_GET["categoryid"]) $selected=$count;
Doudoux