summaryrefslogtreecommitdiff
path: root/_darcs/tentative_pristine
blob: 2a7c664f3f0cf51f48c542c890e553f2c0ac0d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
hunk ./actions/twitapilaconica.php 122
-                    common_element($setting, null, common_config($section, $setting));
+                    $value = common_config($section, $setting);
+                    if (is_array($value)) {
+                        $value = implode(',', $value);
+                    } else if ($value === false) {
+                        $value = 'false';
+                    } else if ($value === true) {
+                        $value = 'true';
+                    }
+                    common_element($setting, null, $value);