diff options
| author | spiderr <spiderr@bitweaver.org> | 2025-05-24 20:02:08 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2025-05-24 20:02:08 -0400 |
| commit | 19987cbb0fa65ffa37cba7e7382a4a70df170788 (patch) | |
| tree | a12dd7f4718f97859094eea3928b08e44463f902 /validate.php | |
| parent | 4d9d57f8eda188e7bb21d5daa2d39fc119e0c209 (diff) | |
| download | users-19987cbb0fa65ffa37cba7e7382a4a70df170788.tar.gz users-19987cbb0fa65ffa37cba7e7382a4a70df170788.tar.bz2 users-19987cbb0fa65ffa37cba7e7382a4a70df170788.zip | |
SmartyBC cleanup: assign_by_ref->assignByRef
Diffstat (limited to 'validate.php')
| -rw-r--r-- | validate.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/validate.php b/validate.php index 2fc6d47..9a068df 100644 --- a/validate.php +++ b/validate.php @@ -60,7 +60,7 @@ if( !empty( $_REQUEST['provider'] ) ) { } elseif( is_object( $auth ) && is_a( $auth, 'Hybrid_User_Profile' ) ) { $_SESSION['returnto'] = NULL; // an unconnected authProfile was found - $gBitSmarty->assign_by_ref( 'authProfile', $auth ); + $gBitSmarty->assignByRef( 'authProfile', $auth ); $tpl = 'bitpackage:users/validate_auth.tpl'; if( !empty( $_REQUEST['auth_login'] ) ) { $user = isset($_REQUEST['user']) ? $_REQUEST['user'] : false; @@ -124,8 +124,8 @@ if( !empty( $_REQUEST['provider'] ) ) { break; } - $gBitSmarty->assign_by_ref( 'authError', $authError ); - $gBitSmarty->assign_by_ref( 'authExpection', $e ); + $gBitSmarty->assignByRef( 'authError', $authError ); + $gBitSmarty->assignByRef( 'authExpection', $e ); bit_error_log( $authError ); $tpl = 'bitpackage:users/validate_auth.tpl'; } |
