diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-05-10 14:14:35 +0200 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-05-10 14:14:35 +0200 |
commit | b92daf96f5ae40abaadc3f41e448fcc75824334b (patch) | |
tree | 356b80d4d63f2dbe01afbefee65da986b2c1005a /controllers | |
parent | 2792d5150d81c7e9e7a8e645e1b07f0ad0dc5e8a (diff) |
disable manifest during development, set placeholder text
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/editor.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/controllers/editor.php b/controllers/editor.php index 995438b..a66c188 100644 --- a/controllers/editor.php +++ b/controllers/editor.php @@ -33,9 +33,9 @@ $app->get('/editor/oembed', function() use($app) { $app->response()->body($json); }); -$app->get('/appcache.manifest', function() use($app) { - $content = partial('partials/appcache'); +// $app->get('/appcache.manifest', function() use($app) { +// $content = partial('partials/appcache'); - $app->response()['Content-type'] = 'text/cache-manifest'; - $app->response()->body($content); -}); +// $app->response()['Content-type'] = 'text/cache-manifest'; +// $app->response()->body($content); +// }); |