rilwis / taxonomy-meta

Add meta values to terms, mimic custom post fields
42 stars 27 forks source link

PHP Fatal error: Call-time pass-by-reference #4

Closed ghost closed 12 years ago

ghost commented 12 years ago

Don't do &$meta outside of functions defs.

Do: function save_field_wysiwyg(&$meta, $field, $old, $new) Don't: $this->save_field(&$meta, $field, $old, $new) Do: $this->save_field($meta, $field, $old, $new)

DahmaniAdame commented 12 years ago

Got the same problem!

Fatal error: Call-time pass-by-reference has been removed in /dummypath/wp-content/plugins/taxonomy-meta-master/taxonomy-meta.php on line 534

Any hack or fix to solve this?