zanbaldwin / eventing

Eventing is a PHP application framework, by Zander Baldwin, based on the HMVC design pattern, licensed under the MIT/X11. This is an unstable, open-source side project.
MIT License
7 stars 0 forks source link

URI Library not working. #6

Closed zanbaldwin closed 14 years ago

zanbaldwin commented 14 years ago

E_uri::_split() is not working as expected. Function splits segments and suffix, but puts the URI segments into the suffix variable.

zanbaldwin commented 14 years ago

The common function xplode() performs array_unshift() on its result before returning it. Changed the numeric keys on the array it returns in E_uri::_split() to compensate for that.