We now use a central function for fetching the postdata
This commit is contained in:
parent
f8b8a5a52b
commit
b4c673a620
7 changed files with 21 additions and 6 deletions
|
@ -16,11 +16,12 @@ use Friendica\Model\User;
|
|||
use Friendica\Protocol\DFRN;
|
||||
use Friendica\Protocol\Diaspora;
|
||||
use Friendica\Util\Strings;
|
||||
use Friendica\Util\Network;
|
||||
|
||||
function dfrn_notify_post(App $a) {
|
||||
Logger::log(__function__, Logger::TRACE);
|
||||
|
||||
$postdata = file_get_contents('php://input');
|
||||
$postdata = Network::postdata();
|
||||
|
||||
if (empty($_POST) || !empty($postdata)) {
|
||||
$data = json_decode($postdata);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue