[TYPO3-german] falsche URLs im IE bei t3references
Philipp Holdener
philipp at holdener.ch
Sat Sep 19 11:05:04 CEST 2009
Hallo zusammen
Im IE bekomm ich falsche URLs in dieser Selectbox
/**
* Make the selectorbox with the status.
*
* @access public
* @return string HTML code with select form field
*/
function makeStatusSelect() {
$opt = array();
for ($a=0; $a<4; $a++) {
$this->pi_linkTP_keepPIvars('', array('status' => ($a ? $a : ''),
'pointer' => ''), 0);
$opt[] = '<option value="' .
htmlentities($this->cObj->lastTypoLinkUrl) . '"' .
(intval($this->piVars['status']) == $a ? ' SELECTED' : '').'>' .
$this->pi_getLL('status_' . $a) . '</option>';
}
return '<select
onChange="document.location=this.options[this.selectedIndex].value;">' .
implode('', $opt) . '</select>';
}
er macht mir www.domain.ch/unternehmen/unternehmen/referenzen.html...
statt www.domain/unternehmen/referenzen.html...
Im Safari und im Firefox funktioniert alles einwandfrei.
Jemand eine Idee was ich da anpassen muss?
herzlichen Dank für eure Tipps
Und allseits ein schönes Wochenende
Gruss
Philipp
More information about the TYPO3-german
mailing list