Feature #30178 ยป local.patch
typo3_src-4.5.6/t3lib/class.t3lib_beuserauth.php 2011-09-21 18:47:57.000000000 +0200 | ||
---|---|---|
'resizeTextareas' => 1,
|
||
'resizeTextareas_MaxHeight' => 300,
|
||
'resizeTextareas_Flexible' => 1,
|
||
'dbBrowserWidth' => 650,
|
||
'normalBrowserWidth' => 600,
|
||
);
|
||
typo3_src-4.5.6/t3lib/class.t3lib_tceforms.php 2011-09-21 18:49:49.000000000 +0200 | ||
---|---|---|
function setFormValueOpenBrowser(mode,params) { //
|
||
var url = "' . $this->backPath . 'browser.php?mode="+mode+"&bparams="+params;
|
||
browserWin = window.open(url,"Typo3WinBrowser","height=650,width="+(mode=="db"?650:600)+",status=0,menubar=0,resizable=1,scrollbars=1");
|
||
browserWin = window.open(url,"Typo3WinBrowser","height=650,width="+(mode=="db"?' . $GLOBALS['BE_USER']->uc['dbBrowserWidth'] . ':' . $GLOBALS['BE_USER']->uc['normalBrowserWidth'] . ')+",status=0,menubar=0,resizable=1,scrollbars=1");
|
||
browserWin.focus();
|
||
}
|
||
function setFormValueFromBrowseWin(fName,value,label,exclusiveValues) {
|