Browse Source

verify Fixed php-phalcon-micro's json test

Mike Smith 11 years ago
parent
commit
dfa534b42b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-phalcon-micro/public/index.php

+ 1 - 1
php-phalcon-micro/public/index.php

@@ -42,7 +42,7 @@ try {
 
 
     $app->map('/json', function() {
     $app->map('/json', function() {
         header("Content-Type: application/json");
         header("Content-Type: application/json");
-        echo json_encode(array('message' => 'Hello World!'));
+        echo json_encode(array('message' => 'Hello, World!'));
     });
     });
 
 
     //
     //