ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/facebook/trunk/facebookapi_php5_restlib.php
(Generate patch)

Comparing facebook/trunk/facebookapi_php5_restlib.php (file contents):
Revision 952 by douglas, 2007-10-10T17:24:17-07:00 vs.
Revision 953 by douglas, 2007-10-10T19:27:07-07:00

# Line 190 | Line 190 | function toggleDisplay(id, type) {
190      return $this->call_method('facebook.feed.publishTemplatizedAction',
191        array('actor_id' => $actor_id,
192              'title_template' => $title_template,
193 <            'title_data' => $title_data,
193 >            'title_data' => is_array($title_data) ? json_encode($title_data) : $title_data,
194              'body_template' => $body_template,
195 <            'body_data' => $body_data,
195 >            'body_data' => is_array($body_data) ? json_encode($body_data) : $body_data,
196              'body_general' => $body_general,
197              'image_1' => $image_1,
198              'image_1_link' => $image_1_link,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines