Functions moved to HTML
authorAdam Magness <adam.magness@gmail.com>
Tue, 6 Nov 2018 02:08:06 +0000 (21:08 -0500)
committerAdam Magness <adam.magness@gmail.com>
Tue, 6 Nov 2018 02:08:06 +0000 (21:08 -0500)
update function calls to new class

widgets/widget_friendheader.php
widgets/widget_friends.php

index df03419..7df1ff7 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 
+use Friendica\Content\Text\HTML;
 use Friendica\Core\L10n;
 
 function friendheader_widget_name()
@@ -45,7 +46,7 @@ function friendheader_widget_content(&$a, $conf)
                .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
 
        </style>";
-       $o .= _abs_url(contact_block());
+       $o .= _abs_url(HTML::contactBlock());
        $o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."' target=new>". L10n::t('Get added to this list!') ."</a>";
 
        return $o;
index 3621271..f661a4f 100644 (file)
@@ -1,5 +1,6 @@
 <?php
 
+use Friendica\Content\Text\HTML;
 use Friendica\Core\L10n;
 
 function friends_widget_name()
@@ -47,7 +48,7 @@ function friends_widget_content(&$a, $conf)
                .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
 
        </style>";
-       $o .= _abs_url(contact_block());
+       $o .= _abs_url(HTML::contactBlock());
        $o .= "<a href='".$a->getBaseURL().'/profile/'.$a->profile['nickname']."'>". L10n::t('Connect on Friendica!') ."</a>";
        return $o;
 }