]> git.mxchange.org Git - friendica.git/blobdiff - mod/suggest.php
Contact names with ">" and "<" are a problem ...
[friendica.git] / mod / suggest.php
index a86b412b3235e7484d9a6fe9f92e412e84b64bb7..8bf31ca8e591bf449d489064ad5ec84fa33c0d28 100644 (file)
@@ -44,13 +44,15 @@ function suggest_init(&$a) {
        }
 
 }
-               
+
 
 
 
 
 function suggest_content(&$a) {
 
+       require_once("mod/proxy.php");
+
        $o = '';
        if(! local_user()) {
                notice( t('Permission denied.') . EOL);
@@ -63,7 +65,9 @@ function suggest_content(&$a) {
        $a->page['aside'] .= findpeople_widget();
 
 
-       $o .= '<h2>' . t('Friend Suggestions') . '</h2>';
+       $o .= replace_macros(get_markup_template("section_title.tpl"),array(
+               '$title' => t('Friend Suggestions')
+       ));
 
 
        $r = suggestion_query(local_user());
@@ -77,12 +81,12 @@ function suggest_content(&$a) {
 
        foreach($r as $rr) {
 
-               $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);                      
+               $connlnk = $a->get_baseurl() . '/follow/?url=' . (($rr['connect']) ? $rr['connect'] : $rr['url']);
 
                $o .= replace_macros($tpl,array(
                        '$url' => zrl($rr['url']),
                        '$name' => $rr['name'],
-                       '$photo' => $rr['photo'],
+                       '$photo' => proxy_url($rr['photo'], false, PROXY_SIZE_THUMB),
                        '$ignlnk' => $a->get_baseurl() . '/suggest?ignore=' . $rr['id'],
                        '$ignid' => $rr['id'],
                        '$conntxt' => t('Connect'),