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

Fatal error: Only variables can be passed by reference #191

Closed crackcomm closed 13 years ago

crackcomm commented 13 years ago

Fatal error: Only variables can be passed by reference in classes/jelly/core/builder.php line 948:


extract($this->_meta_alias($field, array(
            'model' => $model,
            'field' => $field,
            'value' => $value,
)));

should be:

$variable = $this->_meta_alias($field, array(
            'model' => $model,
            'field' => $field,
            'value' => $value,
));
extract($variable);
nickolasgregory commented 13 years ago

You should probably post this issue here; https://github.com/creatoro/kohana-jelly-for-Kohana-3.1/ as this repo is no longer maintained.

bistory commented 13 years ago

It's a pitty that only the unstable branch is still maintained, there is a lot of people that are still using the master branch and have to keep that version running instead of upgrading. And I prefer the syntax of the master branch...

crackcomm commented 13 years ago

sry i thought it was that branch...x/