]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/vier/theme.php
fix some more HTML violations in posted_date_widget.tpl
[friendica.git] / view / theme / vier / theme.php
index eaee46e92842a7c614e1f511e70d26709b42b808..b703173bbd9c7484044ff276b4798ba1ccd59dd5 100644 (file)
@@ -10,6 +10,7 @@
  */
 
 use Friendica\App;
+use Friendica\Core\System;
 
 require_once "include/plugin.php";
 require_once "include/socgraph.php";
@@ -21,7 +22,7 @@ function vier_init(App $a) {
 
        set_template_engine($a, 'smarty3');
 
-       if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] or $a->argv[0] === "network" && local_user()) {
+       if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname'] || $a->argv[0] === "network" && local_user()) {
                vier_community_info();
 
                $a->page['htmlhead'] .= "<link rel='stylesheet' type='text/css' href='view/theme/vier/wide.css' media='screen and (min-width: 1300px)'/>\n";
@@ -129,7 +130,7 @@ function vier_community_info() {
        $show_lastusers  = get_vier_config("show_lastusers", 1);
 
        // get_baseurl
-       $url = App::get_baseurl($ssl_state);
+       $url = System::baseUrl($ssl_state);
        $aside['$url'] = $url;
 
        // comunity_profiles
@@ -235,7 +236,7 @@ function vier_community_info() {
                                        'name'         => $contact['name'],
                                        'cid'          => $contact['id'],
                                        'selected'     => $selected,
-                                       'micro'        => App::remove_baseurl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
+                                       'micro'        => System::removedBaseUrl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)),
                                        'id'           => ++$id,
                                );
                                $entries[] = $entry;