Search code examples
symfony1criteriapropel

symfony 1.4/propel: problems trying to the previous element of a group of elements retrieved using a criteria


i have retrieved a group of elements using a propel criteria. Now are at $Sedi18ns

When i use this:

$SediI18ns->prev()

I get:

( ! ) Fatal error: Call to undefined method sfOutputEscaperArrayDecorator::prev()

No problems when i use next().

Any idea?

Regards

Javi


Solution

  • sfOutputEscaperArrayDecorator has a next() method, as defined by the Iterator interface, but no prev() method. You can access them as arrays, and use numeric indexes, or just save the previous object in a variable and use that.