]> git.mxchange.org Git - friendica.git/blobdiff - mod/notes.php
missing salmon key? report it.
[friendica.git] / mod / notes.php
index 7a826bf61224413f61f436525d281a262bb0e254..9f1a4662da968d5f4a844af6dc5560142be53ef8 100644 (file)
@@ -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 .= '<h3>' . t('Private Notes') . '</h3>';
+       $o .= '<h3>' . t('Personal Notes') . '</h3>';
 
        $commpage = false;
        $commvisitor = false;