X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnotes.php;h=9f1a4662da968d5f4a844af6dc5560142be53ef8;hb=8f6ae2b66044a36996ac92a8db1a540db9c71fe3;hp=7a826bf61224413f61f436525d281a262bb0e254;hpb=4cff911939b263993eb41682ca558c975e2db01f;p=friendica.git diff --git a/mod/notes.php b/mod/notes.php index 7a826bf612..9f1a4662da 100644 --- a/mod/notes.php +++ b/mod/notes.php @@ -36,9 +36,23 @@ 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('Private Notes') . '

'; + $o .= '

' . t('Personal Notes') . '

'; $commpage = false; $commvisitor = false;