# HG changeset patch # User Franck Deroche # Date 1240906756 -7200 # Node ID 2ef0d9a3eeba9390c41b6f211a153f7cc04fa132 # Parent 5df98f90134d3e99cedf0e8306a199fedcee0a25 Syntax error fix diff -r 5df98f90134d -r 2ef0d9a3eeba mee.module --- a/mee.module Thu Apr 30 15:13:58 2009 -0400 +++ b/mee.module Tue Apr 28 10:19:16 2009 +0200 @@ -135,9 +135,9 @@ // @@@TODO: Handle failure of fetch $atom = scald_fetch(scald_search(array('base_id' => $node->nid . ':' . $delta), FALSE, TRUE)); $atom->publisher = $node->uid; - $temp_atom->title = $node->title . ' - ' . $field['widget']['label'] . ' (#' . $delta . ')'; + $atom->title = $node->title; $atom->authors = array(scald_uid_to_aid($node->uid)); // @@@TODO: This will completely override any authors listed & replace only with the Publisher. - $temp_atom->relationships = empty($scald_included) ? array() : array('includes' => $scald_included); + $atom->relationships = empty($scald_included) ? array() : array('includes' => $scald_included); scald_update_atom($atom); }