summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2010-03-26 19:55:16 +0000
committerZach Copley <zach@status.net>2010-03-26 19:58:26 +0000
commitc9a3916c34f4413167b6afccac0d05a24754a5fb (patch)
tree4c143050c2cd618a694ac4b315913b08facee2f1 /actions
parentb82e55356d4ea306b1069ba5acc8878ce18c2abc (diff)
Really make sure we return 'true' and 'false' strings for boolean vals in api/statusnet/config.:format.
Diffstat (limited to 'actions')
-rw-r--r--actions/apistatusnetconfig.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/apistatusnetconfig.php b/actions/apistatusnetconfig.php
index 66b23c02d..76d37ea97 100644
--- a/actions/apistatusnetconfig.php
+++ b/actions/apistatusnetconfig.php
@@ -103,9 +103,9 @@ class ApiStatusnetConfigAction extends ApiAction
$value = common_config($section, $setting);
if (is_array($value)) {
$value = implode(',', $value);
- } else if ($value === false) {
+ } else if ($value === false || $value == '0') {
$value = 'false';
- } else if ($value === true) {
+ } else if ($value === true || $value == '1') {
$value = 'true';
}