summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/src/Components/ContentHeader.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/skins/chameleon/src/Components/ContentHeader.php')
-rw-r--r--www/wiki/skins/chameleon/src/Components/ContentHeader.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/www/wiki/skins/chameleon/src/Components/ContentHeader.php b/www/wiki/skins/chameleon/src/Components/ContentHeader.php
index 1bb08ac1..724f60da 100644
--- a/www/wiki/skins/chameleon/src/Components/ContentHeader.php
+++ b/www/wiki/skins/chameleon/src/Components/ContentHeader.php
@@ -60,21 +60,6 @@ class ContentHeader extends Component {
$this->indent() . '<!-- tagline; usually goes something like "From WikiName" primary purpose of this seems to be for printing to identify the source of the content -->' .
$this->indent() . $idRegistry->element( 'div', array( 'id'=> 'siteSub' ), $skintemplate->getMsg( 'tagline' )->escaped() );
- if ( $skintemplate->get( 'subtitle' ) ) {
-
- // TODO: should not use class 'small', better use class 'contentSub' and do styling in a less file
- $ret .=
- $this->indent() . '<!-- subtitle line; used for various things like the subpage hierarchy -->' .
- $this->indent() . $idRegistry->element( 'div', array( 'id' => 'contentSub', 'class' => 'small' ), $skintemplate->get( 'subtitle' ) );
-
- }
-
- if ( $skintemplate->get( 'undelete' ) ) {
- // TODO: should not use class 'small', better use class 'contentSub2' and do styling in a less file
- $ret .=
- $this->indent() . '<!-- undelete message -->' .
- $this->indent() . $idRegistry->element( 'div', array( 'id' => 'contentSub2', 'class' => 'small' ), $skintemplate->get( 'undelete' ) );
- }
// TODO: Do we need this? Seems to be an accessibility thing. It's used
// in vector to jump to the nav which is at the bottom of the document,