From: jason Date: Fri, 11 Apr 2008 22:42:22 +0000 (-0400) Subject: session_new() returns id, fixed db_count() X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=a09e0b5b03f95291c9508dd28a2e682ea9fb1f88;hp=73490300ca9dea6fc3c6d3a474ab49796fd58438;p=wfpl.git session_new() returns id, fixed db_count() --- 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.