summaryrefslogtreecommitdiff
path: root/confirm.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2010-03-16 22:11:15 +0000
committerChristian Fowler <spider@viovio.com>2010-03-16 22:11:15 +0000
commitbfa06b8b194b4dc9e586b9313e906cb7024bde46 (patch)
tree294e77db55b49b70ab5ac9ffd6560634c0c8e2da /confirm.php
parent4f6b8f1fd1ebfd364880087d87888eebf772be79 (diff)
downloadusers-bfa06b8b194b4dc9e586b9313e906cb7024bde46.tar.gz
users-bfa06b8b194b4dc9e586b9313e906cb7024bde46.tar.bz2
users-bfa06b8b194b4dc9e586b9313e906cb7024bde46.zip
replace deprecated ereg and split calls
Diffstat (limited to 'confirm.php')
-rw-r--r--confirm.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/confirm.php b/confirm.php
index faaab0a..87de717 100644
--- a/confirm.php
+++ b/confirm.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/confirm.php,v 1.10 2010/02/08 21:27:26 wjames5 Exp $
+ * $Header: /cvsroot/bitweaver/_bit_users/confirm.php,v 1.11 2010/03/16 22:11:15 spiderr Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
*
- * $Id: confirm.php,v 1.10 2010/02/08 21:27:26 wjames5 Exp $
+ * $Id: confirm.php,v 1.11 2010/03/16 22:11:15 spiderr Exp $
* @package users
* @subpackage functions
*/
@@ -19,7 +19,7 @@
require_once( '../kernel/setup_inc.php' );
if( !empty( $_REQUEST["v"] ) && strpos( $_REQUEST["v"], ':' ) ) {
- list( $userId, $provPass ) = split( ':', $_REQUEST["v"] );
+ list( $userId, $provPass ) = explode( ':', $_REQUEST["v"] );
}
if( !empty( $userId ) && !empty( $provPass ) && $userInfo = $gBitUser->confirmRegistration( $userId, $provPass ) ) {