Revert change where NULL config value wasn't handled as unset (#1489202)

pull/73/merge
Aleksander Machniak 13 years ago
parent 1f4b2a7093
commit 2787fbe5b6

@ -194,7 +194,7 @@ class rcube_config
*/
public function get($name, $def = null)
{
if (array_key_exists($name, $this->prop)) {
if (isset($this->prop[$name])) {
$result = $this->prop[$name];
}
else {

Loading…
Cancel
Save