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

Bug #7758 Wrong array format expected in createTableIndexes()
Submitted: 2006-05-30 13:08 UTC
From: yunosh Assigned: yunosh
Status: Closed Package: MDB2_Schema (version 0.5.0)
PHP Version: Irrelevant OS:
Roadmaps: (Not assigned)    
Subscription  


 [2006-05-30 13:08 UTC] yunosh (Jan Schneider)
Description: ------------ In createTableIndexes() line 586, the code expects a 3-dimensional array to be returned from getTableFieldDefinition(), while a two-dimensional array is returned instead. Replacing $field_info[0][0] with $field_info[0], fixes this.

Comments

 [2006-05-31 09:02 UTC] lsmith (Lukas Smith)
This bug has been fixed in CVS. If this was a documentation problem, the fix will appear on pear.php.net by the end of next Sunday (CET). If this was a problem with the pear.php.net website, the change should be live shortly. Otherwise, the fix will appear in the package's next release. Thank you for the report and for helping us make PEAR better.
 [2006-06-01 08:22 UTC] yunosh (Jan Schneider)
Confirmed.