PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Authentication » LiveUser » Bug #6939

parsing errors on Cache.php

Details

Submitted2006-02-26 08:32 UTC
Fromtony at marionweb dot com
StatusSuspended
PackageLiveUser
PHP Version4.4.0
OSWindows
Roadmaps(Not assigned)

Comments

[2006-02-26 08:32 UTC] tony at marionweb dot com

Description:
------------
8 functions in the Cache.php file have a reference to write_into_cache, which is not properly terminated. I was unable to find write_into_cache mentioned in any other file and within this file it causes a parsing error. It hasn't caused any issues with my implementation, but I wanted to bring it to your attention.

You can see it in the mapUser function below.

function mapUser($auth_user_id, $containerName)
{
if (in_cache) {
return cache;
}
$result = $this->_storage->mapUser($auth_user_id, $containerName);
if ($result === false) {
return false;
}
write_into_cache
return $result;
}

Thanks,
Tony Marion