From b102731ac2b6f475e7038a66d832a7c19bb6c37b Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 21 Jan 2009 09:04:36 +0000 Subject: [PATCH] - $config needs to be global, or the year doesn't work :) --- user.inc.php | 1 + 1 file changed, 1 insertion(+) diff --git a/user.inc.php b/user.inc.php index 064106f7..9e432c0d 100644 --- a/user.inc.php +++ b/user.inc.php @@ -460,6 +460,7 @@ function user_purge($u, $type=false) /* Duplicate a row in the users table, or any one of the users_* tables. */ function user_dupe_row($db, $key, $val, $newval) { + global $config; $nullfields = array('deleteddatetime'); /* Fields that can be null */ $q = mysql_query("SELECT * FROM $db WHERE $key='$val'"); if(mysql_num_rows($q) != 1) {