forked from friendica/friendica-addons
disable posterous
This commit is contained in:
parent
e536b2593c
commit
9cbd26dcc9
BIN
posterous.tgz
BIN
posterous.tgz
Binary file not shown.
|
@ -138,6 +138,10 @@ function posterous_post_local(&$a,&$b) {
|
|||
|
||||
function posterous_send(&$a,&$b) {
|
||||
|
||||
logger('posterous_send: invoked');
|
||||
logger('posterous: plugin disabled. API endpoint no longer responds.');
|
||||
return;
|
||||
|
||||
if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
|
||||
return;
|
||||
|
||||
|
@ -155,7 +159,7 @@ function posterous_send(&$a,&$b) {
|
|||
if($pstr_username && $pstr_password && $pstr_blog) {
|
||||
|
||||
require_once('include/bbcode.php');
|
||||
require_once('posterous-api.php');
|
||||
require_once('addon/posterous/posterous-api.php');
|
||||
$tag_arr = array();
|
||||
$tags = '';
|
||||
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
|
||||
|
@ -179,6 +183,8 @@ function posterous_send(&$a,&$b) {
|
|||
'body' => bbcode($b['body'])
|
||||
);
|
||||
|
||||
logger('posterous: params: ' . print_r($params,true), LOGGER_DATA);
|
||||
|
||||
$api = new PosterousAPI($pstr_username,$pstr_password);
|
||||
|
||||
$result = $api->newpost($params);
|
||||
|
|
Loading…
Reference in a new issue