summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-02-01 11:49:50 -0500
committerEvan Prodromou <evan@status.net>2010-02-01 11:49:50 -0500
commit0787daff2cd3d73ac1a4af2353b35f6199ebff49 (patch)
tree1677b7f9431e9b024a863afd8ff1043040a4fd7e /actions
parent7390b1d1ac75876ef980face1dc3afbb7cc3ae23 (diff)
parentd73746641b6dd17cc9037c016632be673704a10f (diff)
Merge branch 'testing' of git@gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'actions')
-rw-r--r--actions/register.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/actions/register.php b/actions/register.php
index 698137346..063bbe2cc 100644
--- a/actions/register.php
+++ b/actions/register.php
@@ -303,27 +303,6 @@ 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
*