diff options
author | Brion Vibber <brion@pobox.com> | 2010-02-02 09:57:50 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-02-02 09:57:50 -0800 |
commit | f4c81fa1e138cbcbab27e6135f464a06d0209a37 (patch) | |
tree | 6af05efd09b29f0a3600e6d77f563b3fa68c4ff0 /actions | |
parent | 2be00ce64221197f3c8ad1458eba2488c8836e5c (diff) | |
parent | 027c7e61fd6ecbb866a4f18111662902942d046e (diff) |
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into 0.9.x
Diffstat (limited to 'actions')
-rw-r--r-- | actions/register.php | 21 | ||||
-rw-r--r-- | actions/showapplication.php | 2 |
2 files changed, 22 insertions, 1 deletions
diff --git a/actions/register.php b/actions/register.php index 063bbe2cc..698137346 100644 --- a/actions/register.php +++ b/actions/register.php @@ -303,6 +303,27 @@ class RegisterAction extends Action return ($user !== false); } + // overrrided to add entry-title class + function showPageTitle() { + if (Event::handle('StartShowPageTitle', array($this))) { + $this->element('h1', array('class' => 'entry-title'), $this->title()); + } + } + + // overrided to add hentry, and content-inner class + function showContentBlock() + { + $this->elementStart('div', array('id' => 'content', 'class' => 'hentry')); + $this->showPageTitle(); + $this->showPageNoticeBlock(); + $this->elementStart('div', array('id' => 'content_inner', + 'class' => 'entry-content')); + // show the actual content (forms, lists, whatever) + $this->showContent(); + $this->elementEnd('div'); + $this->elementEnd('div'); + } + /** * Instructions or a notice for the page * diff --git a/actions/showapplication.php b/actions/showapplication.php index d307ea452..020d62480 100644 --- a/actions/showapplication.php +++ b/actions/showapplication.php @@ -201,7 +201,7 @@ class ShowApplicationAction extends OwnerDesignAction $userCnt = $appUsers->count(); $this->raw(sprintf( - _('created by %1$s - %2$s access by default - %3$d users'), + _('Created by %1$s - %2$s access by default - %3$d users'), $profile->getBestName(), $defaultAccess, $userCnt |