Browse Source

verify Fixed micromvc's json test

Mike Smith 11 years ago
parent
commit
713ebc6171
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-micromvc/Class/Controller/Benchmark/Json.php

+ 1 - 1
php-micromvc/Class/Controller/Benchmark/Json.php

@@ -9,6 +9,6 @@ class Json extends \MyController
     public function send()
     {
         headers_sent() OR header('Content-type: application/json');
-        echo json_encode(array('message' => 'Hello World'));
+        echo json_encode(array('message' => 'Hello, World!'));
     }
 }