Aleksander Machniak
2012-10-16 5f6c71ae36b73e5f94543eec2f61874cf46e9c62
Fix return value of storage_connect()
1 files modified
3 ■■■■ changed files
program/include/rcmail.php 3 ●●●● patch | view | raw | blame | history
program/include/rcmail.php
@@ -2118,10 +2118,9 @@
            }
            else {
                $this->set_storage_prop();
                return $storage->is_connected();
            }
        }
        return false;
        return $storage->is_connected();
    }
}