From 7ab0b1bb5672536b3ab8f0260b02fd68ef4eff6b Mon Sep 17 00:00:00 2001 From: rWatcher Date: Mon, 25 Jan 2010 01:04:59 -0500 Subject: [PATCH] Use the photo title, not the file name. --- modules/export_facebook/controllers/export_facebook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/export_facebook/controllers/export_facebook.php b/modules/export_facebook/controllers/export_facebook.php index 988eed19..8c2ce64b 100644 --- a/modules/export_facebook/controllers/export_facebook.php +++ b/modules/export_facebook/controllers/export_facebook.php @@ -63,7 +63,7 @@ class export_facebook_Controller extends Controller { $photo_keywords = substr($photo_keywords, 0, -2); } } - print $photo->id . "\t" . $photo->name . "\t" . stristr($photo->resize_url(false),"/var/") . "\t" . stristr($photo->thumb_url(false), "/var/") . "\t\t" . $photo->description . "\t" . $photo_keywords . "\n"; + print $photo->id . "\t" . $photo->title . "\t" . stristr($photo->resize_url(false),"/var/") . "\t" . stristr($photo->thumb_url(false), "/var/") . "\t\t" . $photo->description . "\t" . $photo_keywords . "\n"; } } }