Browse Source

verify Fixed Fuel's json test

Mike Smith 11 years ago
parent
commit
af03e690a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-fuel/fuel/app/classes/controller/bench.php

+ 1 - 1
php-fuel/fuel/app/classes/controller/bench.php

@@ -4,7 +4,7 @@ class Controller_Bench extends Controller
 {
     public function action_json()
     {
-        return new Response(json_encode(array('message' => 'Hello World!')), 200, array(
+        return new Response(json_encode(array('message' => 'Hello, World!')), 200, array(
             'Content-Type' => 'application/json'
         ));
     }