diff options
author | emkael <emkael@tlen.pl> | 2016-04-19 14:00:07 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-04-19 14:00:07 +0200 |
commit | f533a1d313eb2121c156bf7a25b338e686afa00b (patch) | |
tree | f1e0385043d42f1917d6b59ab21fdfc8ec7f60ba /http | |
parent | d0acd8681d97c863b9b6fec9d286a0aa19abf61e (diff) |
* moving assets to custom directory
Diffstat (limited to 'http')
-rw-r--r-- | http/_assets/.gitignore (renamed from http/assets/.gitignore) | 0 | ||||
-rw-r--r-- | http/index.php | 4 |
2 files changed, 3 insertions, 1 deletions
diff --git a/http/assets/.gitignore b/http/_assets/.gitignore index 72e8ffc..72e8ffc 100644 --- a/http/assets/.gitignore +++ b/http/_assets/.gitignore diff --git a/http/index.php b/http/index.php index 26d9992..24743f8 100644 --- a/http/index.php +++ b/http/index.php @@ -3,7 +3,7 @@ // The following directory checks may be removed if performance is required $basePath = dirname(__FILE__); $frameworkPath = $basePath . '/../lib/prado/framework/prado.php'; -$assetsPath = $basePath . '/assets/'; +$assetsPath = $basePath . '/_assets/'; $applicationPath = $basePath . '/../app/php/'; $runtimePath = $basePath . '/../cache/prado/'; @@ -19,3 +19,5 @@ require_once($frameworkPath); $application = new TApplication($applicationPath); $application->run(); + +?> |