142: $content .= "<fb:profile-pic uid={$friend_fbu} size=square></fb:profile-pic>";
should be
$content .= "<fb:profile-pic uid=\"{$friend_fbu}\" size=\"square\"></fb:profile-pic>";
142: $content .= "<fb:profile-pic uid={$friend_fbu} size=square></fb:profile-pic>";
should be
$content .= "<fb:profile-pic uid=\"{$friend_fbu}\" size=\"square\"></fb:profile-pic>";
Comments
Comment #1
higginsd commentedappears the fb_connect.module also has missing quotes around attributes, as well.
On a side-note, it appears that when quotes are used they are inconsistent (single and double intermixed) - though this is valid XHTML, it makes reading the source a bit awkward (not nice to look at mixed-matched quoting - personal preference there though, still valid XML either way)
Comment #2
13rac1 commented2.0 is deprecated.