X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotes.php;h=9f1a4662da968d5f4a844af6dc5560142be53ef8;hb=2aa23843e401e7f448c3d12f844934da6c27f8ef;hp=0f980ff67fda92a0dd27cbc32bb5ba0368239850;hpb=d08b068031f01e1bcf57a46b9e7dfcb217b6fb30;p=friendica.git diff --git a/mod/notes.php b/mod/notes.php index 0f980ff67f..9f1a4662da 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -36,6 +36,20 @@ function notes_content(&$a) { $contact = $a->contact; $is_owner = true; + + $o =""; + // tabs + $tpl = get_markup_template('profile_tabs.tpl'); + $o .= replace_macros($tpl,array( + '$url' => $a->get_baseurl() . '/profile/' . $a->user['nickname'], + '$phototab' => $a->get_baseurl() . '/photos/' . $a->user['nickname'], + '$status' => t('Status'), + '$profile' => t('Profile'), + '$photos' => t('Photos'), + '$events' => t('Events') , + '$notes' => t('Personal Notes'), + '$activetab' => "notes", + )); $o .= '

' . t('Personal Notes') . '

';