$tpl = get_markup_template('viewcontact_template.tpl');
$o .= replace_macros($tpl,array(
- '$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])),
+ //'$title' => sprintf( t('Friends of %s'), htmlentities($c[0]['name'])),
'$tab_str' => $tab_str,
'$contacts' => $entries,
));
$entries[] = $entry;
}
- if($cmd === 'loc' && $cid && $uid == local_user())
+ if($cmd === 'loc' && $cid && $uid == local_user()) {
$tab_str = contacts_tab($a, $cid, 4);
+ } else
+ $title = t('Common Friends');
$tpl = get_markup_template('viewcontact_template.tpl');
$o .= replace_macros($tpl,array(
- '$title' => t('Common Friends'),
+ '$title' => $title,
'$tab_str' => $tab_str,
'$contacts' => $entries,
));
$o .= replace_macros($tpl, array(
//'$header' => t('Contact Editor'),
- '$header' => htmlentities($header),
+ //'$header' => htmlentities($header),
'$tab_str' => $tab_str,
'$submit' => t('Submit'),
'$lbl_vis1' => t('Profile Visibility'),
$header .= " (".network_to_name($contact['network'], $contact['url']).")";
- $tpl = get_markup_template("section_title.tpl");
- $o = replace_macros($tpl,array(
- '$title' => htmlentities($header)
- ));
+ //$tpl = get_markup_template("section_title.tpl");
+ //$o = replace_macros($tpl,array(
+ // '$title' => htmlentities($header)
+ //));
$o .= $tab_str;
$tpl = get_markup_template('crepair.tpl');
$o .= replace_macros($tpl, array(
//'$title' => t('Repair Contact Settings'),
- '$title' => htmlentities($header),
+ //'$title' => htmlentities($header),
'$tab_str' => $tab_str,
'$warning' => $warning,
'$info' => $info,
-<h2>{{$header}}</h2>
+{{if $header}}<h2>{{$header}}</h2>{{/if}}
<div id="contact-edit-wrapper" >
<div class="section-title-wrapper">
- <h2>{{$title}}</h2>
+ {{if $title}}<h2>{{$title}}</h2>{{/if}}
<div class="clear"></div>
</div>
{{include file="contact_template.tpl"}}
{{/foreach}}
</div>
-
+<div class="clear"></div>
<div id="view-contact-end"></div>
{{$paginate}}