Bug #18882 ยป search_to_right.diff
typo3/backend.php (working copy) | ||
---|---|---|
* @return string top toolbar elements as HTML
|
||
*/
|
||
protected function renderToolbar() {
|
||
// move search to last position
|
||
$search = $this->toolbarItems['backendSearch'];
|
||
unset($this->toolbarItems['backendSearch']);
|
||
array_push($this->toolbarItems, $search);
|
||
|
||
$toolbar = '<ul id="typo3-toolbar">';
|
||
$toolbar.= '<li>'.$this->getLoggedInUserLabel().'</li>
|
||
<li><div id="logout-button" class="toolbar-item no-separator">'.$this->moduleMenu->renderLogoutButton().'</div></li>';
|
||
... | ... | |
$TYPO3backend->render();
|
||
?>
|
||
?>
|