summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 {