jonathangeiger / kohana-jelly

See the link below for the most up-to-date code
https://github.com/creatoro/jelly
MIT License
146 stars 34 forks source link

Some leftover code from Jelly Field Views Jelly 0.9.5.3 #31

Closed raeldc closed 14 years ago

raeldc commented 14 years ago

For all relationship field input views, the iteration is still:

<?php foreach(Jelly::factory($foreign['model'])->load() as $related): ?>

This should be:

<?php foreach(Jelly::select($foreign['model'])->execute() as $related): ?>

jonathangeiger commented 14 years ago

Closed by 9eb979fceb03b1122f3baadc073fc8c1975ac5a9. Thanks raeldc!