]> git.mxchange.org Git - friendica.git/blobdiff - mod/manage.php
Merge pull request #3121 from annando/1701-bugfix-config
[friendica.git] / mod / manage.php
index 6af3db99710bf598541fe346ac923b903c72d8d7..4beb8e46c65384d545951fb39d7b72df37769dc6 100644 (file)
@@ -2,11 +2,12 @@
 
 require_once("include/text.php");
 
-if(! function_exists('manage_post')) {
-function manage_post(&$a) {
 
-       if(! local_user())
+function manage_post(App $a) {
+
+       if (! local_user()) {
                return;
+       }
 
        $uid = local_user();
        $orig_record = $a->user;
@@ -15,7 +16,7 @@ function manage_post(&$a) {
                $r = q("select * from user where uid = %d limit 1",
                        intval($_SESSION['submanage'])
                );
-               if(count($r)) {
+               if (dbm::is_result($r)) {
                        $uid = intval($r[0]['uid']);
                        $orig_record = $r[0];
                }
@@ -56,8 +57,9 @@ function manage_post(&$a) {
                );
        }
 
-       if(! count($r))
+       if (! dbm::is_result($r)) {
                return;
+       }
 
        unset($_SESSION['authenticated']);
        unset($_SESSION['uid']);
@@ -84,15 +86,15 @@ function manage_post(&$a) {
        $ret = array();
        call_hooks('home_init',$ret);
 
-       goaway( $a->get_baseurl() . "/profile/" . $a->user['nickname'] );
+       goaway( App::get_baseurl() . "/profile/" . $a->user['nickname'] );
        // NOTREACHED
 }
-}
 
-if(! function_exists('manage_content')) {
-function manage_content(&$a) {
 
-       if(! local_user()) {
+
+function manage_content(App $a) {
+
+       if (! local_user()) {
                notice( t('Permission denied.') . EOL);
                return;
        }
@@ -144,5 +146,5 @@ function manage_content(&$a) {
        ));
 
        return $o;
-}
+
 }