1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 20:45:55 +00:00

modify include path order (closes #514)

This commit is contained in:
Andrew Dolgov
2012-12-09 13:41:22 +04:00
parent 51cc387347
commit 88e8fb3a71
16 changed files with 35 additions and 38 deletions

View File

@@ -1,6 +1,6 @@
<?php
set_include_path(get_include_path() . PATH_SEPARATOR .
dirname(__FILE__) . "/include");
set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
get_include_path());
define('DISABLE_SESSIONS', true);