]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Merge branch 'develop' into rewrites/dbm_is_result
[friendica.git] / mod / profperm.php
index 1c37f84ab2fca78f9703d2c74ac9075d7eeee380..bbb055b021c382e639dd5e50d20cb5b29419bd70 100644 (file)
@@ -1,9 +1,10 @@
 <?php
 
-function profperm_init(&$a) {
+function profperm_init(App &$a) {
 
-       if(! local_user())
+       if (! local_user()) {
                return;
+       }
 
        $which = $a->user['nickname'];
        $profile = $a->argv[1];
@@ -13,9 +14,9 @@ function profperm_init(&$a) {
 }
 
 
-function profperm_content(&$a) {
+function profperm_content(App &$a) {
 
-       if(! local_user()) {
+       if (! local_user()) {
                notice( t('Permission denied') . EOL);
                return;
        }
@@ -52,7 +53,7 @@ function profperm_content(&$a) {
                        intval($a->argv[1]),
                        intval(local_user())
                );
-               if(! dbm::is_result($r)) {
+               if (! dbm::is_result($r)) {
                        notice( t('Invalid profile identifier.') . EOL );
                        return;
                }