]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/facebookinvite.php
Merge branch 'master' of /var/www/trunk
[quix0rs-gnu-social.git] / actions / facebookinvite.php
index 103d5a5686fd721d30796b46fb5db86c751630ed..1e6f6496e0ae093d49e8f0b00623ede4559727b9 100644 (file)
@@ -41,7 +41,7 @@ class FacebookinviteAction extends FacebookAction
         $facebook = get_facebook();
         $fbuid = $facebook->require_login();
 
-        $this->show_header('Invite');
+        $this->showHeader('Invite');
 
         $this->element('h2', null, _('Thanks for inviting your friends to use Identi.ca!'));
         $this->element('p', null, _('Invitations have been sent to the following users:'));
@@ -60,7 +60,7 @@ class FacebookinviteAction extends FacebookAction
 
         $this->elementEnd("ul");
 
-        $this->show_footer();
+        $this->showFooter();
     }
 
     function showInviteForm()
@@ -69,7 +69,8 @@ class FacebookinviteAction extends FacebookAction
         $facebook = get_facebook();
         $fbuid = $facebook->require_login();
 
-        $this->show_header('Invite');
+        $this->showHeader();
+        $this->showNav('Invite');
 
         // Get a list of users who are already using the app for exclusion
         $exclude_ids = $facebook->api_client->friends_getAppUsers();
@@ -104,7 +105,7 @@ class FacebookinviteAction extends FacebookAction
 
         $this->elementEnd("ul");
 
-        $this->show_footer();
+        $this->showFooter();
 
     }