]> git.mxchange.org Git - friendica.git/blobdiff - mod/post.php
Merge pull request #3110 from tobiasd/20170127-translationdocs
[friendica.git] / mod / post.php
index 076587839d96765577d270403dbfb9e4c7ae96ae..c8a88e66cd329c5bd853084f638a33a52e29e1fb 100644 (file)
@@ -9,8 +9,8 @@ require_once('include/salmon.php');
 require_once('include/crypto.php');
 // not yet ready for prime time
 //require_once('include/zot.php');
-       
-function post_post(App &$a) {
+
+function post_post(App $a) {
 
        $bulk_delivery = false;
 
@@ -19,7 +19,7 @@ function post_post(App &$a) {
        }
        else {
                $nickname = $a->argv[2];
-               $r = q("SELECT * FROM `user` WHERE `nickname` = '%s' 
+               $r = q("SELECT * FROM `user` WHERE `nickname` = '%s'
                                AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
                        dbesc($nickname)
                );