From a09e0b5b03f95291c9508dd28a2e682ea9fb1f88 Mon Sep 17 00:00:00 2001 From: jason Date: Fri, 11 Apr 2008 18:42:22 -0400 Subject: [PATCH 1/1] session_new() returns id, fixed db_count() --- db.php | 4 +++- session.php | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/db.php b/db.php index 9390035..0a1369f 100644 --- a/db.php +++ b/db.php @@ -212,7 +212,9 @@ function db_get_value($table, $columns, $where = '') { } function db_count($table, $where = '') { - return db_get_value($table, 'count(*)', $where); + $args = func_get_args(); + array_splice($args, 1, 0, array('count(*)')); + return call_user_func_array('db_get_value', $args); } # call either of these ways: diff --git a/session.php b/session.php index 4bbaea9..4efec20 100644 --- a/session.php +++ b/session.php @@ -71,6 +71,7 @@ function session_new($length = 86400) { $GLOBALS['session_key'] = $session_key; $_REQUEST['session_key'] = $session_key; #just in case someone calls session_exists() after session_new() session_touch($length); + return $GLOBALS['session_key']; } # call to renew the timeout for the session. -- 1.7.10.4