X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=view%2Ftheme%2Fvier%2Ftheme.php;h=c2669f5a931ae8030d88ba603d596b243ec894b9;hb=0c764684bb32a9432fd161e62db907efb78af1a5;hp=91c384f805d1692253879f31a7bdb4dd3e0ef540;hpb=583a2f709b210b556faee4f001bcb58b7a3240e1;p=friendica.git diff --git a/view/theme/vier/theme.php b/view/theme/vier/theme.php index 91c384f805..c2669f5a93 100644 --- a/view/theme/vier/theme.php +++ b/view/theme/vier/theme.php @@ -220,7 +220,7 @@ function vier_community_info() { //Community_Pages at right_aside if($show_pages AND local_user()) { - require_once('include/forums.php'); + require_once('include/ForumManager.php'); if(x($_GET['cid']) && intval($_GET['cid']) != 0) $cid = $_GET['cid']; @@ -228,7 +228,7 @@ function vier_community_info() { //sort by last updated item $lastitem = true; - $contacts = get_forumlist($a->user['uid'],true,$lastitem, true); + $contacts = ForumManager::get_list($a->user['uid'],true,$lastitem, true); $total = count($contacts); $visible_forums = 10; @@ -364,10 +364,10 @@ function vier_community_info() { $r[] = array("photo" => "images/twitter.png", "name" => "Twitter"); if (plugin_enabled("wppost")) - $r[] = array("photo" => "images/wordpress", "name" => "Wordpress"); + $r[] = array("photo" => "images/wordpress.png", "name" => "Wordpress"); if(function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only")) - $r[] = array("photo" => "images/mail", "name" => "E-Mail"); + $r[] = array("photo" => "images/mail.png", "name" => "E-Mail"); $tpl = get_markup_template('ch_connectors.tpl');