+
+2006-04-29 Martin Kutschker <martin.t.kutschker@blackbox.net>
+
+ Fix typolink.addQueryString.method=GET (see bug #3241)
+
2006-05-03 Rupert Germann <rupi@gmx.li>
* Fix: mod.web_list.alternateBgColors=1 did not work in TYPO3 4.0 when no skin is used. Added the missing class to typo3/stylesheet.css
* Fixed bug #3226: Error in template::clearCacheMenu if user is not admin
+2006-04-29 Martin Kutschker <martin.t.kutschker@blackbox.net>
+
+ * Fixed wrong use of implode in typo3/mod/tools/em/class.em_index.php (lines 1392, 1424)
+
2006-04-23 Dmitry Dulepov <typo3@accio.lv>
* Fixed bugs #3049 and #3176: HTTP status 503 is sent when $TSFE->set_no_cache is called
$content = '<p>The mirror list was not updated, it could not be fetched from '.$this->MOD_SETTINGS['mirrorListURL'].'. Possible reasons: network problems, allow_url_fopen is off, curl is not enabled in Install tool.</p>';
} else {
t3lib_div::writeFile($mfile, $mirrorsFile);
- $mirrors = implode(gzfile($mfile));
+ $mirrors = implode('',gzfile($mfile));
t3lib_div::unlink_tempfile($mfile);
$mirrors = $this->xmlhandler->parseMirrorsXML($mirrors);
$content .= '<p>Error: The extension list could not be fetched from '.$extfile.'. Possible reasons: network problems, allow_url_fopen is off, curl is not enabled in Install tool.</p>';
} else {
t3lib_div::writeFile(PATH_site.'typo3temp/extensions.xml.gz', $extXML);
- $content .= $this->xmlhandler->parseExtensionsXML(implode(gzfile(PATH_site.'typo3temp/extensions.xml.gz')));
+ $content .= $this->xmlhandler->parseExtensionsXML(implode('',gzfile(PATH_site.'typo3temp/extensions.xml.gz')));
$this->xmlhandler->saveExtensionsXML();
}
}
}
$content = '';
- foreach ($q_out as $k => $v) {
- $content .= '&'.$k.'='.($rawValues ? $v : rawurlencode($v));
+ if ($rawValues) {
+ foreach ($q_out as $k => $v) {
+ $content .= '&'.$k.'='.$v;
+ }
+ } else {
+ $content = t3lib_div::implodeArrayForUrl('',$q_out);
}
+
return $content;
}