aboutsummaryrefslogtreecommitdiffstats
path: root/include/config.php
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-04-04 23:32:16 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-04-04 23:32:16 -0400
commitafe7f09b278bca546f606a6ce54707a853cddf47 (patch)
treead54ff6a49e503a0218a301ef8e362fb6e08c6ea /include/config.php
parentc0a18bc2fad021db026141b732b3e9a1e0ce1d71 (diff)
parentd509a463452585bcbb9fccd07857871ca5c8b063 (diff)
downloadvolse-hubzilla-afe7f09b278bca546f606a6ce54707a853cddf47.tar.gz
volse-hubzilla-afe7f09b278bca546f606a6ce54707a853cddf47.tar.bz2
volse-hubzilla-afe7f09b278bca546f606a6ce54707a853cddf47.zip
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master: correct some filer dialog weirdness caused by introduction of categories move alert box away from nav links log disabled requests fix config storage of booleans * master:
Diffstat (limited to 'include/config.php')
-rwxr-xr-xinclude/config.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/config.php b/include/config.php
index 2cddda0b8..4cff38090 100755
--- a/include/config.php
+++ b/include/config.php
@@ -80,6 +80,7 @@ function set_config($family,$key,$value) {
// manage array value
$dbvalue = (is_array($value)?serialize($value):$value);
+ $dbvalue = (is_bool($value) ? intval($value) : $value);
if(get_config($family,$key,true) === false) {
$a->config[$family][$key] = $value;