diff options
| author | 2015-06-01 19:40:30 +0200 | |
|---|---|---|
| committer | 2015-06-01 19:40:30 +0200 | |
| commit | 137c498c84da23f9abad2217c5fd716d6c514573 (patch) | |
| tree | c4bcf466e174c9abc1f15b29e8940e5fabad803d /constants.php | |
| parent | ae277ddefcd7b5a776ec4b30562d5dca6479b6dd (diff) | |
| parent | 384a146883548ba0274f8cbee0c2e67dc053f70e (diff) | |
Merge from dev
https://github.com/FreshRSS/FreshRSS/issues/312
Diffstat (limited to 'constants.php')
| -rw-r--r-- | constants.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/constants.php b/constants.php index 5bb410e29..d5f0cc06b 100644 --- a/constants.php +++ b/constants.php @@ -1,5 +1,5 @@ <?php -define('FRESHRSS_VERSION', '1.2-dev'); +define('FRESHRSS_VERSION', '1.1.2-dev'); define('FRESHRSS_WEBSITE', 'http://freshrss.org'); define('FRESHRSS_UPDATE_WEBSITE', 'https://update.freshrss.org?v=' . FRESHRSS_VERSION); define('FRESHRSS_WIKI', 'http://doc.freshrss.org'); @@ -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'); |
