diff options
author | Bart Visscher <bartv@thisnet.nl> | 2014-02-12 17:38:32 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2014-02-12 17:38:32 +0100 |
commit | 2c6411b8977e4d17e6489c5a1b768f9de93ba280 (patch) | |
tree | 492db1f1ec767bd0de88dbc68a9e373371f3cbc7 /lib/private/config.php | |
parent | 1fb5f96c37ab8738ba96b97bc04a75b0fa911aca (diff) | |
download | nextcloud-server-2c6411b8977e4d17e6489c5a1b768f9de93ba280.tar.gz nextcloud-server-2c6411b8977e4d17e6489c5a1b768f9de93ba280.zip |
$default of OC_Config::[gs]etValue can have more then string as type
Diffstat (limited to 'lib/private/config.php')
-rw-r--r-- | lib/private/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/config.php b/lib/private/config.php index 8a9d5ca6158..8399d0defbd 100644 --- a/lib/private/config.php +++ b/lib/private/config.php @@ -77,7 +77,7 @@ class Config { /** * @brief Gets a value from config.php * @param string $key key - * @param string $default = null default value + * @param mixed $default = null default value * @return string the value or $default * * This function gets the value from config.php. If it does not exist, @@ -94,7 +94,7 @@ class Config { /** * @brief Sets a value * @param string $key key - * @param string $value value + * @param mixed $value value * * This function sets the value and writes the config.php. * |