summaryrefslogtreecommitdiff
path: root/actions/facebookinvite.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-19 13:35:17 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-19 13:35:17 +0000
commit12c475c101c070cbcc4c63f7b1049f6d3282b9ee (patch)
tree17852a7eb495117d372b0d059d3ed8405b590b92 /actions/facebookinvite.php
parente703f5e347574c2f68c97a3884bec209f924602f (diff)
parent739baf0396b2e6796f07616cdb9d52d09cf6ed2f (diff)
Merge branch 'master' of /var/www/trunk
Conflicts: actions/facebookhome.php actions/facebooksettings.php
Diffstat (limited to 'actions/facebookinvite.php')
-rw-r--r--actions/facebookinvite.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/actions/facebookinvite.php b/actions/facebookinvite.php
index 103d5a568..1e6f6496e 100644
--- a/actions/facebookinvite.php
+++ b/actions/facebookinvite.php
@@ -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();
}