Browse Source

verify Fixed php-slim's json test

Mike Smith 11 years ago
parent
commit
b6de3c6095
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-slim/index.php

+ 1 - 1
php-slim/index.php

@@ -36,7 +36,7 @@ $app = new \Slim\Slim();
 
 $app->get('/json', function () use($app) {
     $app->contentType('application/json');
-    echo json_encode(array('message' => 'Hello World!'));
+    echo json_encode(array('message' => 'Hello, World!'));
 });
 
 $app->get('/db', function () use($app) {