diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-01-26 06:31:25 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-01-26 06:31:25 +0000 |
commit | 55a4fac6a62a0997f15120432314d55df8994132 (patch) | |
tree | 029fc14f618ef09f0537435e955449ae333459a3 /lib | |
parent | b2e67db8337d94aee86adbfb8c1b61ad3e5a3b8d (diff) |
trac750 Better permissions workflow and styling hooks
Diffstat (limited to 'lib')
-rw-r--r-- | lib/facebookaction.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/facebookaction.php b/lib/facebookaction.php index c781b86f4..a12c7d6f9 100644 --- a/lib/facebookaction.php +++ b/lib/facebookaction.php @@ -276,6 +276,8 @@ class FacebookAction extends Action function showInstructions() { + $this->elementStart('div', array('class' => 'facebook_guide')); + $this->elementStart('dl', array('class' => 'system_notice')); $this->element('dt', null, 'Page Notice'); @@ -292,6 +294,9 @@ class FacebookAction extends Action $this->text($loginmsg_part2); $this->elementEnd('dd'); $this->elementEnd('dl'); + + $this->elementEnd('div'); + } @@ -315,7 +320,6 @@ class FacebookAction extends Action 'action' => 'index.php')); $this->elementStart('fieldset'); - $this->element('legend', null, _('Login to site')); $this->elementStart('ul', array('class' => 'form_datas')); $this->elementStart('li'); |