remove json_encode for those who aren't able to upgrade their version of php for god knows what reason ;)

This commit is contained in:
John Bender 2011-08-17 15:40:04 -07:00
parent 3737d170a0
commit a8aa78d331

View file

@ -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 ) . '"]}';
?>