diff options
author | plegall <plg@piwigo.org> | 2011-12-27 21:36:39 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-12-27 21:36:39 +0000 |
commit | bf24a3278c42f2df6e4d88b953390e508a27f9ae (patch) | |
tree | 3eca603676132e63cecad6606e91ab992e646f63 /include | |
parent | e42f791f52c502c00d095d6bf9aa3e3989423e98 (diff) |
feature 2541: fix bug on PHPWG_ROOT_PATH and includes
git-svn-id: http://piwigo.org/svn/trunk@12798 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r-- | include/functions.inc.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index f0a83d197..afd3ea702 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -30,9 +30,9 @@ include_once( PHPWG_ROOT_PATH .'include/functions_html.inc.php' ); include_once( PHPWG_ROOT_PATH .'include/functions_tag.inc.php' ); include_once( PHPWG_ROOT_PATH .'include/functions_url.inc.php' ); include_once( PHPWG_ROOT_PATH .'include/functions_plugins.inc.php' ); -include_once( PHPWG_ROOT_PATH .'/include/derivative_params.inc.php'); -include_once( PHPWG_ROOT_PATH .'/include/derivative_std_params.inc.php'); -include_once( PHPWG_ROOT_PATH .'/include/derivative.inc.php'); +include_once( PHPWG_ROOT_PATH .'include/derivative_params.inc.php'); +include_once( PHPWG_ROOT_PATH .'include/derivative_std_params.inc.php'); +include_once( PHPWG_ROOT_PATH .'include/derivative.inc.php'); //----------------------------------------------------------- generic functions |