Removed just more old diaspora function calls.

This commit is contained in:
Michael Vogel 2016-03-14 20:53:44 +01:00 committed by Roland Haeder
parent 2446c56e50
commit 07bd89c35f
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
13 changed files with 8 additions and 109 deletions

View file

@ -54,7 +54,6 @@ function receive_post(&$a) {
logger('mod-diaspora: message is okay', LOGGER_DEBUG);
$msg = diaspora::decode($importer,$xml);
//$msg = diaspora_decode($importer,$xml);
logger('mod-diaspora: decoded', LOGGER_DEBUG);
@ -68,10 +67,8 @@ function receive_post(&$a) {
$ret = 0;
if($public) {
diaspora::dispatch_public($msg);
//diaspora_dispatch_public($msg);
} else {
$ret = diaspora::dispatch($importer,$msg);
//$ret = diaspora_dispatch($importer,$msg);
}
http_status_exit(($ret) ? $ret : 200);