improvement: bundled-libs/HTTP/Request.php
Posted: Wed May 24, 2006 6:55 pm
and again in line 18 
find
and replace with
it also works without the replacement, or better it worked on my server. The change is only to inhibit any error messages.
p.s.: Yes, I do have a very restrictive php.ini
regards,
twobee
find
Code: Select all
$separator = ini_get('arg_separator.output');
ini_set('arg_separator.output', '&');
$querystring = ($querystring = $this->_url->getQueryString()) ? '?' . $querystring : '';
ini_set('arg_separator.output', $separator);
Code: Select all
if (function_exists('ini_set')
{
$separator = ini_get('arg_separator.output');
ini_set('arg_separator.output', '&');
$querystring = ($querystring = $this->_url->getQueryString()) ? '?' . $querystring : '';
ini_set('arg_separator.output', $separator);
}
p.s.: Yes, I do have a very restrictive php.ini
regards,
twobee