diff options
author | tailor <chowells@janrain.com> | 2008-06-05 00:24:47 +0000 |
---|---|---|
committer | tailor <chowells@janrain.com> | 2008-06-05 00:24:47 +0000 |
commit | 1f01cbb363cc9422a6ed27178a4696c257070543 (patch) | |
tree | 52602f9be875344558cd3a52fa8ef16e7943b7a9 /Tests | |
parent | 72e0e235aef9cb13e9b2bfd054b92f12de0b6c3a (diff) | |
download | php-openid-1f01cbb363cc9422a6ed27178a4696c257070543.zip php-openid-1f01cbb363cc9422a6ed27178a4696c257070543.tar.gz php-openid-1f01cbb363cc9422a6ed27178a4696c257070543.tar.bz2 |
[project @ Silence session_start warnings that are output for older builds of PHP 4.3 so the build passes]
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/Auth/OpenID/Consumer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Auth/OpenID/Consumer.php b/Tests/Auth/OpenID/Consumer.php index 613bf01..3f6f9b7 100644 --- a/Tests/Auth/OpenID/Consumer.php +++ b/Tests/Auth/OpenID/Consumer.php @@ -13,7 +13,7 @@ * @license http://www.apache.org/licenses/LICENSE-2.0 Apache */ -session_start(); +@session_start(); require_once 'Auth/OpenID/CryptUtil.php'; require_once 'Auth/Yadis/HTTPFetcher.php'; |