commit b321209beac7e423f327f5aac3787aaccbf4c988 parent 73b57642000832b3a72ca5fb93ef62a8078f2eea Author: MTRNord <mtrnord1@gmail.com> Date: Sat, 13 Dec 2014 19:27:32 +0100 new try Diffstat:
| M | core/backend/admin/blog/newpost.php | | | 4 | ++-- |
| A | include.php | | | 5 | +++++ |
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/core/backend/admin/blog/newpost.php b/core/backend/admin/blog/newpost.php @@ -1,6 +1,6 @@ <?php -$old_include = get_include_path(); -echo $old_include; +include('../../../../include.php') +echo get_include_path(); include('/core/config/variables.config.php'); ################ diff --git a/include.php b/include.php @@ -0,0 +1,4 @@ +<?php +set_include_path(get_include_path() . PATH_SEPARATOR . getcwd()); +echo get_include_path(); +?> +\ No newline at end of file