patch attached.

CommentFileSizeAuthor
synonym_collapsing-fix-php-error.patch725 byteseMPee584

Comments

oriol_e9g’s picture

Status: Needs review » Reviewed & tested by the community

I have donwloaded the last dev version and i have changed this:

-    if ($node->build_mode == NODE_BUILD_PREVIEW) {
+    if (isset($node->build_mode) && $node->build_mode == NODE_BUILD_PREVIEW) {

and now synonym collapsing it's working again!

This seems that solves this issue: http://drupal.org/node/273542

Please commit!