Project

General

Profile

Actions

Bug #15559

closed

Adminpanel - Javascript link to open backend causes error with IE and realurl

Added by Patrick Rodacker over 18 years ago. Updated over 10 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2006-02-02
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
3.8
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

The javascript link within the adminpanel to open the TYPO3 backend does not work correctly on a subpage of the domain when using the extension 'realurl' and the Internet Explorer (6.0).

This is a general problem i could narrow down to the following: If you have a website with a basetag (e.g. http://yourdomain.com/) set and you are on a subpage (e.g. http://yourdomain.com/subpage/) the JS function call 'window.open(<relative_link>)' from the Adminpanel will result in:

- Firefox: http://yourdomain.com/&lt;relative_link> which is correct
- Internet Explorer: http://yourdomain.com/subpage/&lt;relative_link> which causes an error

It seems that the JS function call within the IE does not consider the basetag at all.

Having realurl enabled and using the link within the adminpanel to open the backend will cause the described error in IExplorer.

For me changing the line 381 in class.t3lib_tsfebeuserauth:
vHWin=window.open(\''.TYPO3_mainDir.'alt_main.php\',\''.md5('Typo3Backend-'.$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']).'\',\'status=1,menubar=1,scrollbars=1,resizable=1\');

into:
vHWin=window.open(\'http://'.$GLOBALS['HTTP_SERVER_VARS']['HTTP_HOST'].'/'.TYPO3_mainDir.'alt_main.php\',\''.md5('Typo3Backend-'.$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']).'\',\'status=1,menubar=1,scrollbars=1,resizable=1\');
fixed the problem, but I don't know if this is the best approach.

(issue imported from #M2472)


Files

bug_2472.diff (1.53 KB) bug_2472.diff Administrator Admin, 2006-10-17 19:04
Actions

Also available in: Atom PDF