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

Bug #4599 MDB2 Driver broken w/ patch
Submitted: 2005-06-15 12:24 UTC
From: tacker Assigned: datenpunk
Status: Closed Package: DB_NestedSet
PHP Version: 5.0.4 OS: Irrelevant
Roadmaps: (Not assigned)    
Subscription  


 [2005-06-15 12:24 UTC] tacker
Description: ------------ The MDB2 driver fails to load the manager pluging because it is named lowercase. Using 'Manager' works. See patch below. --- /usr/lib/php/DB/NestedSet/MDB2.php.old 2005-06-15 14:19:14.000000000 +0200 +++ /usr/lib/php/DB/NestedSet/MDB2.php 2005-06-15 14:18:35.000000000 +0200 @@ -138,7 +138,7 @@ */ function _dropSequence($sequence) { - $this->db->loadModule('manager'); + $this->db->loadModule('Manager'); return $this->db->manager->dropSequence($sequence); }

Comments

 [2005-06-15 12:25 UTC] tacker
Urks. Firefox autocompletion changed the summary.
 [2005-06-15 12:39 UTC] d dot khan at ventigo dot com
This bug has been fixed in CVS. In case this was a documentation problem, the fix will show up at the end of next Sunday (CET) on pear.php.net. In case this was a pear.php.net website problem, the change will show up on the website in short time. Thank you for the report, and for helping us make PEAR better.