Hi Team,
shouldn't the default server settings from config.default.php applied to all user configured servers?
i thought this is/was the case, but now i know it issn't, was this changed?
Hi
Dne Thu, 11 Dec 2008 08:37:23 +0100 Sebastian Mendel lists@sebastianmendel.de napsal(a):
shouldn't the default server settings from config.default.php applied to all user configured servers?
I think it should be applied...
Sebastian Mendel a écrit :
Hi Team,
shouldn't the default server settings from config.default.php applied to all user configured servers?
i thought this is/was the case, but now i know it issn't, was this changed?
After a quick test I would say that it works for me in trunk. Tested in libraries/common.inc.php with:
echo 'trace A<pre>'; print_r($each_server); echo '</pre>'; $each_server = array_merge($default_server, $each_server); echo 'trace B<pre>'; print_r($each_server); echo '</pre>';
and if I comment out, for example, the $cfg['Servers'][$i]['extension'] line in config.inc.php, it gets a value from the default server definition.
But it won't work if I have this in config.inc.php: $cfg['Servers'][$i]['extension'] = '';