Browse Source

verify Fixed php-phalcon's json test

Mike Smith 11 years ago
parent
commit
196c6e5509
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-phalcon/app/controllers/BenchController.php

+ 1 - 1
php-phalcon/app/controllers/BenchController.php

@@ -13,7 +13,7 @@ class BenchController extends \Phalcon\Mvc\Controller
 
     public function jsonAction() {
         return $this->sendContentAsJson(array(
-            'message' => 'Hello World!'
+            'message' => 'Hello, World!'
         ));
     }