diff options
author | Alexander Merz <alexmerz@php.net> | 2001-07-27 11:53:35 +0000 |
---|---|---|
committer | Alexander Merz <alexmerz@php.net> | 2001-07-27 11:53:35 +0000 |
commit | ca5fd10e1dc1914c68a29b201a0932d0d06beaa9 (patch) | |
tree | 9d3265c6809d578d2b5b5d3554338ab4f312f915 /pear | |
parent | cba5dd75464ef8b80f7b2fc02d7660fe48ff7139 (diff) | |
download | php-git-ca5fd10e1dc1914c68a29b201a0932d0d06beaa9.tar.gz |
Bugfix by Johannes Erdfelt
Diffstat (limited to 'pear')
-rw-r--r-- | pear/Config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/Config.php b/pear/Config.php index cd621e32ac..4e7607835f 100644 --- a/pear/Config.php +++ b/pear/Config.php @@ -285,7 +285,7 @@ class Config { $datasrc = $this -> datasrc ; } $this->container->data = $this->data; - $this->container->writeInput($datasrc,$preserve); + return $this->container->writeInput($datasrc,$preserve); } |