Bug #18146 ยป 20080206_user_setup_fix.diff
typo3/sysext/setup/mod/index.php (working copy) | ||
---|---|---|
$this->doc->loadJavascriptLib('md5.js');
|
||
$this->content .= $this->doc->startPage($LANG->getLL('UserSettings'));
|
||
$this->content .= $this->doc->header($LANG->getLL('UserSettings').' - '.$BE_USER->user['realName'].' ['.$BE_USER->user['username'].']');
|
||
|
||
// use a wrapper div
|
||
$this->content .= '<div id="user-setup-wrapper">';
|
||
|
||
// Load available backend modules
|
||
$this->loadModules = t3lib_div::makeInstance('t3lib_loadModules');
|
||
$this->loadModules->observeWorkspaces = TRUE;
|
||
... | ... | |
// shortcut
|
||
$this->content .= $this->doc->spacer(30);
|
||
$this->content .= $this->doc->makeShortcutIcon('','',$this->MCONF['name']);
|
||
|
||
// end of wrapper div
|
||
$this->content .= '</div>';
|
||
}
|
||
/**
|
typo3/sysext/t3skin/stylesheets/typo3-dyntabmenu.css (working copy) | ||
---|---|---|
}
|
||
#ext-setup-mod-index-php DIV.typo3-dyntabmenu-divs {
|
||
padding-bottom:12px;
|
||
border:1px solid #aaa;
|
||
width:576px;
|
||
padding-bottom: 12px;
|
||
border: 1px solid #aaa;
|
||
width: 100%;
|
||
background-color: #eee;
|
||
}
|
||
#ext-setup-mod-index-php #user-setup-wrapper {
|
||
float:left;
|
||
}
|