]> git.mxchange.org Git - friendica.git/blobdiff - mod/receive.php
applied coding convention:
[friendica.git] / mod / receive.php
index abe43d2b883213cbcf72895555a3cbca3f5c82f0..3563f2d705a487f23b7a3b3652bdf308957f62bb 100644 (file)
@@ -10,7 +10,7 @@ require_once('include/crypto.php');
 require_once('include/diaspora.php');
 
 
-function receive_post(&$a) {
+function receive_post(App $a) {
 
 
        $enabled = intval(get_config('system','diaspora_enabled'));
@@ -34,8 +34,9 @@ function receive_post(&$a) {
                $r = q("SELECT * FROM `user` WHERE `guid` = '%s' AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                        dbesc($guid)
                );
-               if(! dbm::is_result($r))
+               if (! dbm::is_result($r)) {
                        http_status_exit(500);
+               }
 
                $importer = $r[0];
        }