Committer: gariev
Typo fixedU trunk/cgi-bin/LJ/Worker/Repost/CommentToFacebook.pm U trunk/cgi-bin/LJ/Worker/Repost/EntryToFacebook.pm U trunk/cgi-bin/LJ/Worker/Repost.pm
Modified: trunk/cgi-bin/LJ/Worker/Repost/CommentToFacebook.pm =================================================================== --- trunk/cgi-bin/LJ/Worker/Repost/CommentToFacebook.pm 2010-08-20 09:29:14 UTC (rev 9369) +++ trunk/cgi-bin/LJ/Worker/Repost/CommentToFacebook.pm 2010-08-20 10:21:17 UTC (rev 9370) @@ -39,7 +39,7 @@ my $body_raw = $comment->body_raw; - my $picture = $class->extract_first_picure_url($body_raw); + my $picture = $class->extract_first_picture_url($body_raw); if (!$picture) { if (my $upi = $comment->userpic) { $picture = $upi->url; Modified: trunk/cgi-bin/LJ/Worker/Repost/EntryToFacebook.pm =================================================================== --- trunk/cgi-bin/LJ/Worker/Repost/EntryToFacebook.pm 2010-08-20 09:29:14 UTC (rev 9369) +++ trunk/cgi-bin/LJ/Worker/Repost/EntryToFacebook.pm 2010-08-20 10:21:17 UTC (rev 9370) @@ -39,7 +39,7 @@ my $event_raw = $entry->event_raw; - my $picture = $class->extract_first_picure_url($event_raw); + my $picture = $class->extract_first_picture_url($event_raw); if (!$picture) { if (my $upi = $entry->userpic) { $picture = $upi->url; Modified: trunk/cgi-bin/LJ/Worker/Repost.pm =================================================================== --- trunk/cgi-bin/LJ/Worker/Repost.pm 2010-08-20 09:29:14 UTC (rev 9369) +++ trunk/cgi-bin/LJ/Worker/Repost.pm 2010-08-20 10:21:17 UTC (rev 9370) @@ -32,7 +32,7 @@ } ## see also: LJ::html_get_img_urls -sub extract_first_picure_url { +sub extract_first_picture_url { my $class = shift; my $html = shift;