1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-27 01:40:22 +02:00

Bugtracker #3762 - correct dbInsert - thanks Rille

This commit is contained in:
e107steved
2007-02-12 20:04:46 +00:00
parent 1e2f814d64
commit fd86da03ef

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/class2.php,v $ | $Source: /cvs_backup/e107_0.8/class2.php,v $
| $Revision: 1.14 $ | $Revision: 1.15 $
| $Date: 2007-02-05 21:40:40 $ | $Date: 2007-02-12 20:04:46 $
| $Author: e107steved $ | $Author: e107steved $
+----------------------------------------------------------------------------+ +----------------------------------------------------------------------------+
*/ */
@@ -1115,7 +1115,7 @@ class e_online {
} }
$sql->db_Update("online", $query); $sql->db_Update("online", $query);
} else { } else {
$sql->db_Insert("online", " '".time()."', 'null', '0', '{$ip}', '{$page}', 1, 0"); $sql->db_Insert("online", " '".time()."', '0', '0', '{$ip}', '{$page}', 1, 0");
} }
} }