Posted by Miguel.Andrade on February 12, 2009 at 2:19pm
Jump to:
| Project: | Export DocBook |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | critical |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
In the install code:
if (!array_search($needed, $extensions))
should be:
if (array_search($needed, $extensions)===FALSE)
Because if the extension is at position "0" in the array, then it reports it's missing.
Comments
#1