From a8aa78d331bdb70cdee700d9817dcfc9cc33c55a Mon Sep 17 00:00:00 2001 From: John Bender Date: Wed, 17 Aug 2011 15:40:04 -0700 Subject: [PATCH] remove json_encode for those who aren't able to upgrade their version of php for god knows what reason ;) --- tests/unit/ls.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/ls.php b/tests/unit/ls.php index 2108b544..577bfecc 100644 --- a/tests/unit/ls.php +++ b/tests/unit/ls.php @@ -16,5 +16,5 @@ $test_pages = array_merge($directories, glob("**/*-tests.html")); sort($test_pages); - echo json_encode( array('testPages' => $test_pages)); + echo '{ "testPages":["' . implode( '","', $test_pages ) . '"]}'; ?> \ No newline at end of file