03-24-2011, 02:45 PM
(03-24-2011, 03:34 AM)Doudoux Wrote: In "inc/inc.ClassSession.php" file change line 75
toPHP Code:$queryStr = "UPDATE tblSessions SET lastAccess = " . mktime(). " WHERE id = '" . $id . "'";
see http://www.php.net/manual/en/function.mktime.phpPHP Code:$queryStr = "UPDATE tblSessions SET lastAccess = " . time(). " WHERE id = '" . $id . "'";
mktime() returns a timestamp if called without parameters, just like time(). Using mktime() may not be very common, but it should not make a difference.
(03-24-2011, 03:34 AM)Doudoux Wrote: In "out/out.KeywordChooser.php" file change line 34If you mean the ^M, this can be found all over the place because of different line endings.
toPHP Code:$categories = $dms->getAllKeywordCategories($userids);^M
PHP Code:$categories = $dms->getAllKeywordCategories($userids);
Does this really make problems?
(03-24-2011, 03:34 AM)Doudoux Wrote: In "out/out.UserDefaultKeywords.php" file change line 70Fixed in next release.
toPHP Code:if ($category->getID()==$_GET["categoryid"]) $selected=$count;
PHP Code:if (isset($_GET["categoryid"]) && $category->getID()==$_GET["categoryid"]) $selected=$count;
Thanks for testing and reporting the bugs.
Uwe