Fix for EE Multi-relationship field in PHP4
// http://expressionengine.com/forums/viewreply/192755/
Open your /system/modules/weblog/mod.weblog.php file and find from this line: // ------------------------------------------- // 'weblog_entries_tagdata' hook. to this line: // // ------------------------------------------- Replace between those comments with this: if (isset($EXT->extensions['weblog_entries_tagdata'])) { // -- PHP4 Fix For call_user_func_array not passing by reference global $Weblog; $Weblog = $this; // -- End Fix $tagdata = $EXT->call_extension('weblog_entries_tagdata', $tagdata, $row, $this); if ($EXT->end_script === TRUE) return $tagdata; // -- PHP4 Fix For call_user_func_array not passing by reference $this = $Weblog; unset($Weblog); // -- End Fix