* Fixed bug #7793: Argument 1 passed to t3lib_div::arrayToLogString() in module setting must not be null (thanks to Steffen Kamper)
* Fixed bug #7861: t3lib_div::mkdir() should suppress PHP warnings/errors (thanks to Francois Suter)
+ * Fixed bug #7843: t3lib_div uses array_unshift() instead of array_shift() in getIndpEnv() (thanks to Christian Kuhn)
2008-03-16 Ingo Renner <ingo@typo3.org>
$ip = array_pop($ip);
break;
case 'first':
- $ip = array_unshift($ip);
+ $ip = array_shift($ip);
break;
case 'none':
default:
$host = array_pop($host);
break;
case 'first':
- $host = array_unshift($host);
+ $host = array_shift($host);
break;
case 'none':
default: