Closed raeldc closed 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): ?>
Closed by 9eb979fceb03b1122f3baadc073fc8c1975ac5a9. Thanks raeldc!
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): ?>