diff options
| author | 2015-05-30 18:13:32 +0200 | |
|---|---|---|
| committer | 2015-05-30 18:13:32 +0200 | |
| commit | 737047296874bf8fbad22c9c030486748cde9943 (patch) | |
| tree | 1b3877d7a53329a6e5924cb4ea598be41127a072 /constants.php | |
| parent | 68172c400ff568629bb9b9f540bf9d239ea9fe8b (diff) | |
| parent | 27d2b88a19345dfc665dc086d3c2b2e4547e1b7f (diff) | |
Merge pull request #849 from Alkarex/RssFeed
Minz getBaseUrl correction and RSS template bug
Diffstat (limited to 'constants.php')
| -rw-r--r-- | constants.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/constants.php b/constants.php index b20bf0710..d32fdfa9b 100644 --- a/constants.php +++ b/constants.php @@ -11,7 +11,8 @@ define('PHP_COMPRESSION', false); define('FRESHRSS_PATH', dirname(__FILE__)); define('PUBLIC_PATH', FRESHRSS_PATH . '/p'); - define('INDEX_PATH', PUBLIC_PATH . '/i'); + define('PUBLIC_TO_INDEX_PATH', '/i'); + define('INDEX_PATH', PUBLIC_PATH . PUBLIC_TO_INDEX_PATH); define('PUBLIC_RELATIVE', '..'); define('DATA_PATH', FRESHRSS_PATH . '/data'); |
