]> git.mxchange.org Git - friendica.git/commitdiff
Changed $a->get_baseurl() to App::get_baseurl()
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 11:45:16 +0000 (12:45 +0100)
committerRoland Haeder <roland@mxchange.org>
Fri, 23 Dec 2016 18:50:58 +0000 (19:50 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
mod/filerm.php
mod/subthread.php

index 7dbfe29473dd38b02e7c51c9769a9720ed6e106c..7662289ad255e1f0d0e50d8276b296eeca8e33e2 100644 (file)
@@ -22,9 +22,14 @@ function filerm_content(App &$a) {
                file_tag_unsave_file(local_user(),$item_id,$term, $category);
        }
 
+<<<<<<< upstream/develop
        if (x($_SESSION,'return_url')) {
                goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
        }
+=======
+       if(x($_SESSION,'return_url'))
+               goaway(App::get_baseurl() . '/' . $_SESSION['return_url']);
+>>>>>>> HEAD~33
 
        killme();
 }
index c689f7f6cb57c50e089212e12cc784a8b3aba53a..368619dec47c8a59fc6b8c66bafd8d8640ef3294 100644 (file)
@@ -86,7 +86,11 @@ function subthread_content(App &$a) {
        $uri = item_new_uri($a->get_hostname(),$owner_uid);
 
        $post_type = (($item['resource-id']) ? t('photo') : t('status'));
+<<<<<<< upstream/develop
        $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_IMAGE : ACTIVITY_OBJ_NOTE );
+=======
+       $objtype = (($item['resource-id']) ? ACTIVITY_OBJ_PHOTO : ACTIVITY_OBJ_NOTE );
+>>>>>>> HEAD~33
        $link = xmlify('<link rel="alternate" type="text/html" href="' . App::get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id'] . '" />' . "\n") ;
        $body = $item['body'];