Bug #18049 » 7265.diff
typo3/alt_db_navframe.php (working copy) | ||
---|---|---|
// Function, loading the list frame from navigation tree:
|
||
function jumpTo(id, linkObj, highlightID, bank) { //
|
||
var theUrl = top.TS.PATH_typo3 + top.currentSubScript + "?id=" + id;
|
||
var theUrl = top.TS.PATH_typo3 + top.currentSubScript ;
|
||
if (theUrl.indexOf("?")) {
|
||
theUrl += "&id=" + id
|
||
} else {
|
||
theUrl += "?id=" + id
|
||
}
|
||
top.fsMod.currentBank = bank;
|
||
if (top.condensedMode) top.content.location.href = theUrl;
|
||
else parent.list_frame.location.href=theUrl;
|
||
if (top.condensedMode) {
|
||
top.content.location.href = theUrl;
|
||
} else {
|
||
parent.list_frame.location.href=theUrl;
|
||
}
|
||
'.($this->doHighlight ? 'Tree.highlightActiveItem("web", highlightID + "_" + bank);' : '').'
|
||
'.(!$GLOBALS['CLIENT']['FORMSTYLE'] ? '' : 'if (linkObj) linkObj.blur(); ').'
|