When loading the node translations table (node/NID/translate), I get the following error:

warning: Parameter 1 to theme_i18n_node_select_translation() expected to be a reference, value given in /home/aaron/Documents/evolving-design/includes/theme.inc on line 617.

I am certain this has to do with the changes made to PHP (I've upgraded to 5.3.1), as this issue has come up with a number of modules.

The quick fix is to remove the reference "&" on line 262 in i18n.pages.inc

- function theme_i18n_node_select_translation(&$elements) {
+ function theme_i18n_node_select_translation($elements) {

Comments

R.Hendel’s picture

Status: Active » Fixed

I found this fixed in 6.x-1.9

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.