diff options
author | tailor <cygnus@janrain.com> | 2006-01-04 17:34:11 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-04 17:34:11 +0000 |
commit | db6b53d8c70a2508687cd01390075a2984cd6df7 (patch) | |
tree | 48ee94d662d024a957681896dc164de3f861ae27 /Net/OpenID/Store/FileStore.php | |
parent | bae38fcf1e82eca16034233ae11b9be6255088f1 (diff) | |
download | php-openid-db6b53d8c70a2508687cd01390075a2984cd6df7.zip php-openid-db6b53d8c70a2508687cd01390075a2984cd6df7.tar.gz php-openid-db6b53d8c70a2508687cd01390075a2984cd6df7.tar.bz2 |
[project @ Fixed line wrapping]
Diffstat (limited to 'Net/OpenID/Store/FileStore.php')
-rw-r--r-- | Net/OpenID/Store/FileStore.php | 8 |
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 { |