]> git.mxchange.org Git - friendica.git/blobdiff - mod/manage.php
Merge pull request #4170 from MrPetovan/bug/4155-remove-proxy-oembed
[friendica.git] / mod / manage.php
index a6ab32c2d8428c713398dc61b6f816d504826b57..72de332fc70634abbfc5a07495d2c6af1040ab29 100644 (file)
@@ -1,6 +1,8 @@
 <?php
 
 use Friendica\App;
+use Friendica\Core\System;
+use Friendica\Database\DBM;
 
 require_once("include/text.php");
 
@@ -17,7 +19,7 @@ function manage_post(App $a) {
                $r = q("select * from user where uid = %d limit 1",
                        intval($_SESSION['submanage'])
                );
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $uid = intval($r[0]['uid']);
                        $orig_record = $r[0];
                }
@@ -37,7 +39,7 @@ function manage_post(App $a) {
        $limited_id = 0;
        $original_id = $uid;
 
-       if (dbm::is_result($submanage)) {
+       if (DBM::is_result($submanage)) {
                foreach ($submanage as $m) {
                        if ($identity == $m['mid']) {
                                $limited_id = $m['mid'];
@@ -58,7 +60,7 @@ function manage_post(App $a) {
                );
        }
 
-       if (! dbm::is_result($r)) {
+       if (! DBM::is_result($r)) {
                return;
        }
 
@@ -91,7 +93,7 @@ function manage_post(App $a) {
        $ret = array();
        call_hooks('home_init',$ret);
 
-       goaway( App::get_baseurl() . "/profile/" . $a->user['nickname'] );
+       goaway( System::baseUrl() . "/profile/" . $a->user['nickname'] );
        // NOTREACHED
 }
 
@@ -127,21 +129,21 @@ function manage_content(App $a) {
                $r = q("SELECT DISTINCT(`parent`) FROM `notify` WHERE `uid` = %d AND NOT `seen` AND NOT (`type` IN (%d, %d))",
                        intval($id['uid']), intval(NOTIFY_INTRO), intval(NOTIFY_MAIL));
 
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $notifications = sizeof($r);
                }
 
                $r = q("SELECT DISTINCT(`convid`) FROM `mail` WHERE `uid` = %d AND NOT `seen`",
                        intval($id['uid']));
 
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $notifications = $notifications + sizeof($r);
                }
 
                $r = q("SELECT COUNT(*) AS `introductions` FROM `intro` WHERE NOT `blocked` AND NOT `ignore` AND `uid` = %d",
                        intval($id['uid']));
 
-               if (dbm::is_result($r)) {
+               if (DBM::is_result($r)) {
                        $notifications = $notifications + $r[0]["introductions"];
                }