tbrehm
2011-11-21 60c54cfa492892bb51a470d7f4847c535ccdebab
Fixed: PHP Fatal error:  Cannot use string offset as an array in /tmp/trunk/install/lib/installer_base.lib.php on line 638
1 files modified
2 ■■■ changed files
install/lib/installer_base.lib.php 2 ●●● patch | view | raw | blame | history
install/lib/installer_base.lib.php
@@ -635,7 +635,7 @@
        //* If there are RBL's defined, format the list and add them to smtp_recipient_restrictions to prevent removeal after an update
        $rbl_list = '';
        if ($server_ini_array['mail']['realtime_blackhole_list'] != '') {
        if (isset($server_ini_array['mail']['realtime_blackhole_list']) && $server_ini_array['mail']['realtime_blackhole_list'] != '') {
            $rbl_hosts = explode(",",str_replace(" ", "", $server_ini_array['mail']['realtime_blackhole_list']));
            foreach ($rbl_hosts as $key => $value) {
                $rbl_list .= ", reject_rbl_client ". $value;