Comment 1 by Loïc d'Anterroches, Jul 9, 2009
A git grep shows way more places to be fixed. I will do that when a bit tired as this does not require a lot of thinking. Thanks for the report!
Comment 2 by Patrick Georgi, Sep 2, 2009
The attached patch should do it. I also reduced the scope of the error handler because indefero has some other problem with "deprecated" features that I can't track down right now, and this works around it.
- 20090902-2-pluf.diff - 2.44 kB
Comment 3 by Loïc d'Anterroches, Sep 28, 2009
Fixed in commit a1560823a2425f. Thanks a lot!
Status: Fixed
Sign in to reply to this comment.
Reported by Dantrell B., Jun 9, 2009
To fix simply change line 108 in src/Pluf/HTTP/URL.php from: list($model, $method) = split('::', $view); to: list($model, $method) = explode('::', $view);