Posts: 431
Threads: 15
Joined: Oct 2010
Reputation:
0
(03-24-2011, 03:34 AM)Doudoux Wrote: In "inc/inc.ClassSession.php" file change line 75
PHP Code:
<?php
$queryStr = "UPDATE tblSessions SET lastAccess = " . mktime(). " WHERE id = '" . $id . "'";
to
PHP Code:
<?php
$queryStr = "UPDATE tblSessions SET lastAccess = " . time(). " WHERE id = '" . $id . "'";
see
http://www.php.net/manual/en/function.mktime.php
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 34
PHP Code:
<?php
$categories = $dms->getAllKeywordCategories($userids);^M