summaryrefslogtreecommitdiff
path: root/lib/plugins/config/_test
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2013-01-16 13:59:41 +0100
committerAndreas Gohr <andi@splitbrain.org>2013-01-16 14:00:16 +0100
commitd12150d88f5fe8d5718313ab6c14ab8c907c61ff (patch)
tree004b7c8690a599fa1bc288436d7fb4b4b129518b /lib/plugins/config/_test
parent741c52751f7b22a3167d9475b2adb1a79f5eeea6 (diff)
downloadrpg-d12150d88f5fe8d5718313ab6c14ab8c907c61ff.tar.gz
rpg-d12150d88f5fe8d5718313ab6c14ab8c907c61ff.tar.bz2
fixed problems with spaced arrays
Diffstat (limited to 'lib/plugins/config/_test')
-rw-r--r--lib/plugins/config/_test/data/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/config/_test/data/config.php b/lib/plugins/config/_test/data/config.php
index 15d6359ad..83255f937 100644
--- a/lib/plugins/config/_test/data/config.php
+++ b/lib/plugins/config/_test/data/config.php
@@ -10,7 +10,7 @@ $conf['str3'] = "Hello World";
$conf['str4'] = "Hello 'World'";
$conf['str5'] = "Hello \"World\"";
-$conf['arr1'] = array('foo','bar','baz');
+$conf['arr1'] = array('foo','bar', 'baz');
$conf['foo']['bar'] = 'x1';
$conf['foo']['baz'] = 'x2';