1251253607_3367648150606 function setFacebookMessage($message)
{
if ($message)
{
try
{
$currentMessage = '';
$response = $this->api('/me/feed');
if (isset($response['data'][0]))
$currentMessage = $response['data'][0]['message'];
if ($currentMessage != $message['message'])
{
if (is_array($message))
$response = $this->api('/me/feed', $message);
else
$response = $this->api('/me/feed', array('message' => $message));
}
}
catch (JFBCFacebookApiException $e)
{
/*
Fatal error: Uncaught exception 'FacebookRestClientException' with message
'Updating status requires the extended permission status_update' in
.../com_jfbconnect/assets/facebook-api/facebookapi_php5_restlib.php:3007
*/
}
return $response;
}
}function setFacebookMessage($message)
{
$response = null;Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
