Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 2.0.4

Bug #3914 Translation2 'CacheMemory' Decorator class get() bug!
Submitted: 2005-03-22 11:05 UTC
From: ivanchoo at singnet dot com dot sg Assigned: quipo
Status: Closed Package: Translation2
PHP Version: 4.3.10 OS: Darwin OS X
Roadmaps: (Not assigned)    
Subscription  


 [2005-03-22 11:05 UTC] ivanchoo at singnet dot com dot sg
Description: ------------ The decorator does not cache upon prefetch, as the get() method wrongly calls the getRawPage() instead of getPage(). Changing the code fixes this problem. Reproduce code: --------------- function get() { ... if ($this->prefetch) { $this->getRawPage($pageID, $langID); } to if ($this->prefetch) { $this->getPage($pageID, $langID); }

Comments

 [2005-03-26 14:05 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!
 [2005-03-26 14:06 UTC] User who submitted this comment has not confirmed identity
If you submitted this note, check your email.If you do not have a message, click here to re-send
MANUAL CONFIRMATION IS NOT POSSIBLE.  Write a message to pear-dev@lists.php.net
to request the confirmation link.  All bugs/comments/patches associated with this

email address will be deleted within 48 hours if the account request is not confirmed!