diff options
author | Josh Hoyt <josh@janrain.com> | 2006-01-28 00:28:58 +0000 |
---|---|---|
committer | Josh Hoyt <josh@janrain.com> | 2006-01-28 00:28:58 +0000 |
commit | 2df53d6f63c2b78fd76796f1bb32e3bee0171bdf (patch) | |
tree | 0515920868b415ad17b62857847347786d2b5084 /Auth/OpenID/Store/FileStore.php | |
parent | 82ada6dd9395d0a3ad44710e313eee63e1671c1c (diff) | |
download | php-openid-2df53d6f63c2b78fd76796f1bb32e3bee0171bdf.zip php-openid-2df53d6f63c2b78fd76796f1bb32e3bee0171bdf.tar.gz php-openid-2df53d6f63c2b78fd76796f1bb32e3bee0171bdf.tar.bz2 |
[project @ namespace ensureDir]
Diffstat (limited to 'Auth/OpenID/Store/FileStore.php')
-rw-r--r-- | Auth/OpenID/Store/FileStore.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Auth/OpenID/Store/FileStore.php b/Auth/OpenID/Store/FileStore.php index e518b19..95c1de7 100644 --- a/Auth/OpenID/Store/FileStore.php +++ b/Auth/OpenID/Store/FileStore.php @@ -199,10 +199,10 @@ class Auth_OpenID_FileStore extends Auth_OpenID_OpenIDStore { */ function _setup() { - return (ensureDir(dirname($this->auth_key_name)) && - ensureDir($this->nonce_dir) && - ensureDir($this->association_dir) && - ensureDir($this->temp_dir)); + return (Auth_OpenID_ensureDir(dirname($this->auth_key_name)) && + Auth_OpenID_ensureDir($this->nonce_dir) && + Auth_OpenID_ensureDir($this->association_dir) && + Auth_OpenID_ensureDir($this->temp_dir)); } /** |