diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-26 14:14:49 +0100 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-26 14:14:49 +0100 |
commit | 0e9cdf585935680ffea340a60f67d01b5e310947 (patch) | |
tree | 729ec572194844ca500576213a7d7b5b9e77f88d /lib | |
parent | 3e0e7ddb2ccad78e7406bd7201e0aa95844e9038 (diff) | |
parent | 55a4fac6a62a0997f15120432314d55df8994132 (diff) |
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
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'); |