diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-09-09 08:17:45 -0700 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-09-09 08:17:45 -0700 |
commit | 7666ec33d1b942b31ff46eb694bca0b1c8754b68 (patch) | |
tree | 90bb95a2b791b93251947b15116e9ba329084eda /controllers | |
parent | 2bb18a66be585384acd5a4068a4311a976e28c57 (diff) |
enable appcache
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/editor.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/editor.php b/controllers/editor.php index 077adcb..4c9740b 100644 --- a/controllers/editor.php +++ b/controllers/editor.php @@ -68,7 +68,7 @@ $app->post('/editor/test-login', function() use($app) { }); $app->get('/appcache.manifest', function() use($app) { - $content = partial('-partials/appcache'); + $content = partial('partials/appcache'); $app->response()['Content-type'] = 'text/cache-manifest'; $app->response()->body($content); |