Home » Authentication » LiveUser » Bug #6939
parsing errors on Cache.php
Details
| Submitted | 2006-02-26 08:32 UTC |
|---|---|
| From | tony at marionweb dot com |
| Status | Suspended |
| Package | LiveUser |
| PHP Version | 4.4.0 |
| OS | Windows |
| 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