Skip to content

Commit

Permalink
Add TYPO3 version to sitename in backend header
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminkott committed Jun 8, 2014
1 parent d97a9d4 commit 55b2400
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Xclass/Backend/View/LogoView.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function render() {
}

$logoTag = '<img src="' . $imgUrl . '" width="' . $width . '" height="' . $height . '" title="'. $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'] . '" alt="" />'
. '<span class="typo3-sitename">'. $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'] . '</span>';
. '<span class="typo3-sitename">'. $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'] . ' ['. TYPO3_version . ']</span>';
return '<a href="http://'.$GLOBALS['_SERVER']['HTTP_HOST'].'/" target="_blank">' . $logoTag . '</a>';
}

Expand Down

0 comments on commit 55b2400

Please sign in to comment.