Header removed in the contact area
This commit is contained in:
parent
fe900ac576
commit
06a4b0dc5e
|
@ -84,7 +84,7 @@ function allfriends_content(&$a) {
|
||||||
$tpl = get_markup_template('viewcontact_template.tpl');
|
$tpl = get_markup_template('viewcontact_template.tpl');
|
||||||
|
|
||||||
$o .= replace_macros($tpl,array(
|
$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,
|
'$tab_str' => $tab_str,
|
||||||
'$contacts' => $entries,
|
'$contacts' => $entries,
|
||||||
));
|
));
|
||||||
|
|
|
@ -129,13 +129,15 @@ function common_content(&$a) {
|
||||||
$entries[] = $entry;
|
$entries[] = $entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($cmd === 'loc' && $cid && $uid == local_user())
|
if($cmd === 'loc' && $cid && $uid == local_user()) {
|
||||||
$tab_str = contacts_tab($a, $cid, 4);
|
$tab_str = contacts_tab($a, $cid, 4);
|
||||||
|
} else
|
||||||
|
$title = t('Common Friends');
|
||||||
|
|
||||||
$tpl = get_markup_template('viewcontact_template.tpl');
|
$tpl = get_markup_template('viewcontact_template.tpl');
|
||||||
|
|
||||||
$o .= replace_macros($tpl,array(
|
$o .= replace_macros($tpl,array(
|
||||||
'$title' => t('Common Friends'),
|
'$title' => $title,
|
||||||
'$tab_str' => $tab_str,
|
'$tab_str' => $tab_str,
|
||||||
'$contacts' => $entries,
|
'$contacts' => $entries,
|
||||||
));
|
));
|
||||||
|
|
|
@ -579,7 +579,7 @@ function contacts_content(&$a) {
|
||||||
|
|
||||||
$o .= replace_macros($tpl, array(
|
$o .= replace_macros($tpl, array(
|
||||||
//'$header' => t('Contact Editor'),
|
//'$header' => t('Contact Editor'),
|
||||||
'$header' => htmlentities($header),
|
//'$header' => htmlentities($header),
|
||||||
'$tab_str' => $tab_str,
|
'$tab_str' => $tab_str,
|
||||||
'$submit' => t('Submit'),
|
'$submit' => t('Submit'),
|
||||||
'$lbl_vis1' => t('Profile Visibility'),
|
'$lbl_vis1' => t('Profile Visibility'),
|
||||||
|
@ -928,10 +928,10 @@ function contact_posts($a, $contact_id) {
|
||||||
|
|
||||||
$header .= " (".network_to_name($contact['network'], $contact['url']).")";
|
$header .= " (".network_to_name($contact['network'], $contact['url']).")";
|
||||||
|
|
||||||
$tpl = get_markup_template("section_title.tpl");
|
//$tpl = get_markup_template("section_title.tpl");
|
||||||
$o = replace_macros($tpl,array(
|
//$o = replace_macros($tpl,array(
|
||||||
'$title' => htmlentities($header)
|
// '$title' => htmlentities($header)
|
||||||
));
|
//));
|
||||||
|
|
||||||
$o .= $tab_str;
|
$o .= $tab_str;
|
||||||
|
|
||||||
|
|
|
@ -171,7 +171,7 @@ function crepair_content(&$a) {
|
||||||
$tpl = get_markup_template('crepair.tpl');
|
$tpl = get_markup_template('crepair.tpl');
|
||||||
$o .= replace_macros($tpl, array(
|
$o .= replace_macros($tpl, array(
|
||||||
//'$title' => t('Repair Contact Settings'),
|
//'$title' => t('Repair Contact Settings'),
|
||||||
'$title' => htmlentities($header),
|
//'$title' => htmlentities($header),
|
||||||
'$tab_str' => $tab_str,
|
'$tab_str' => $tab_str,
|
||||||
'$warning' => $warning,
|
'$warning' => $warning,
|
||||||
'$info' => $info,
|
'$info' => $info,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<h2>{{$header}}</h2>
|
{{if $header}}<h2>{{$header}}</h2>{{/if}}
|
||||||
|
|
||||||
<div id="contact-edit-wrapper" >
|
<div id="contact-edit-wrapper" >
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<div class="section-title-wrapper">
|
<div class="section-title-wrapper">
|
||||||
<h2>{{$title}}</h2>
|
{{if $title}}<h2>{{$title}}</h2>{{/if}}
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
{{include file="contact_template.tpl"}}
|
{{include file="contact_template.tpl"}}
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
</div>
|
</div>
|
||||||
|
<div class="clear"></div>
|
||||||
<div id="view-contact-end"></div>
|
<div id="view-contact-end"></div>
|
||||||
|
|
||||||
{{$paginate}}
|
{{$paginate}}
|
||||||
|
|
Loading…
Reference in a new issue