summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-01-04 17:34:11 +0000
committertailor <cygnus@janrain.com>2006-01-04 17:34:11 +0000
commitdb6b53d8c70a2508687cd01390075a2984cd6df7 (patch)
tree48ee94d662d024a957681896dc164de3f861ae27
parentbae38fcf1e82eca16034233ae11b9be6255088f1 (diff)
downloadphp-openid-db6b53d8c70a2508687cd01390075a2984cd6df7.zip
php-openid-db6b53d8c70a2508687cd01390075a2984cd6df7.tar.gz
php-openid-db6b53d8c70a2508687cd01390075a2984cd6df7.tar.bz2
[project @ Fixed line wrapping]
-rw-r--r--Net/OpenID/Store/FileStore.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/Net/OpenID/Store/FileStore.php b/Net/OpenID/Store/FileStore.php
index 5076d35..25917bd 100644
--- a/Net/OpenID/Store/FileStore.php
+++ b/Net/OpenID/Store/FileStore.php
@@ -395,7 +395,9 @@ class Net_OpenID_FileStore extends Net_OpenID_OpenIDStore {
return null;
}
- $association = Net_OpenID_Association::deserialize('Net_OpenID_Association', $assoc_s);
+ $association =
+ Net_OpenID_Association::deserialize('Net_OpenID_Association',
+ $assoc_s);
if (!$association) {
_removeIfPresent($filename);
@@ -498,7 +500,9 @@ class Net_OpenID_FileStore extends Net_OpenID_OpenIDStore {
fclose($association_file);
// Remove expired or corrupted associations
- $association = Net_OpenID_Association::deserialize('Net_OpenID_Association', $assoc_s);
+ $association =
+ Net_OpenID_Association::deserialize('Net_OpenID_Association',
+ $assoc_s);
if ($association === null) {
_removeIfPresent($association_filename);
} else {