Commit 18f3722561fab03042d99704c1dd2e47ecb7a1be

Added second check for neutral title on FacebookPostedItems when no text is posted to accompany a link
  
99
1010 $matches = array();
1111 preg_match('/\<span class="story_comment"\>(.+)\<\/span\>\<span class="end_quote"\>/i', $summary, $matches);
12 $story_comment = strip_tags($matches[1]);
12 $story_comment = '';
13 if ($matches) {
14 $story_comment = strip_tags($matches[1]);
15 } else {
16 // take the link title
17 $matches = array();
18 preg_match('/\<div class="title"\>(.+)<\/div\>\<div class="url"\>/i', $summary, $matches);
19 $story_comment = strip_tags($matches[1]);
20 }
1321
1422 // Sometimes the story_comment contains a link, but when coming
1523 // through ping.fm, Facebook strips it out... Will append if not