Actions
Bug #17523
closedProperty config.baseUrl and it's current construct may be incompatible with Explorer
Start date:
2007-08-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
This problem appears when a page has this hierarchy
- BODY
o HEAD
+ BASE like <base href="www.mydomain.com" />
+ SCRIPT containing the following js: document.createStyleSheet()
In this particular case, IE popups an alert saying: " Internet Explorer cannot open the Internet site localhost:8080/tacos4-demo/app. Operation aborted ".
I discovered this bug while testing adaltas_dojo_0_9_beta on IE 6. Typo3 and dojo in its next version (0.9, currently beta) are incompatible on IE.
The bug is describe here:
http://tacoscomponents.jot.com/BugReporter/Bug86
http://trac.dojotoolkit.org/ticket/557
The solution:
in file typo3_src-4.1.3/typo3/sysext/cms/tslib/class.tslib_pagegen.php at line 489,
replace
<base href="'.htmlspecialchars($GLOBALS['TSFE']->baseUrl).'" />';
by
<base href="'.htmlspecialchars($GLOBALS['TSFE']->baseUrl).'" />';
(issue imported from #M6129)
Actions