diff options
author | tailor <cygnus@janrain.com> | 2006-01-04 21:42:47 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-04 21:42:47 +0000 |
commit | 10c5208e53266ffc8a2ce276f405469a8e994b6b (patch) | |
tree | a2cfb6ee1a5d8094160105012af94112b0702f0a /Net/OpenID/CryptUtil.php | |
parent | da4cb31f6c9c234cb5bf3c8373be301226891fc2 (diff) | |
download | php-openid-10c5208e53266ffc8a2ce276f405469a8e994b6b.zip php-openid-10c5208e53266ffc8a2ce276f405469a8e994b6b.tar.gz php-openid-10c5208e53266ffc8a2ce276f405469a8e994b6b.tar.bz2 |
[project @ Removed reference assignment for PHP 5]
Diffstat (limited to 'Net/OpenID/CryptUtil.php')
-rw-r--r-- | Net/OpenID/CryptUtil.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Net/OpenID/CryptUtil.php b/Net/OpenID/CryptUtil.php index 060811e..8a6878f 100644 --- a/Net/OpenID/CryptUtil.php +++ b/Net/OpenID/CryptUtil.php @@ -652,7 +652,7 @@ class Net_OpenID_MathLibrary { // module's functionality. if ($loaded) { $classname = $extension['class']; - $Net_OpenID___mathLibrary =& new $classname(); + $Net_OpenID___mathLibrary = new $classname(); break; } } @@ -661,7 +661,7 @@ class Net_OpenID_MathLibrary { // Net_OpenID_MathWrapper so at least some platform-size // math can be performed. if (!$Net_OpenID___mathLibrary) { - $Net_OpenID___mathLibrary =& new Net_OpenID_MathWrapper(); + $Net_OpenID___mathLibrary = new Net_OpenID_MathWrapper(); } } |