Aleksander Machniak
2013-06-24 2787fbe5b6f015b5ce7c86185cc6876ec892b483
Revert change where NULL config value wasn't handled as unset (#1489202)
1 files modified
2 ■■■ changed files
program/lib/Roundcube/rcube_config.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_config.php
@@ -194,7 +194,7 @@
     */
    public function get($name, $def = null)
    {
        if (array_key_exists($name, $this->prop)) {
        if (isset($this->prop[$name])) {
            $result = $this->prop[$name];
        }
        else {