X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Finc-functions.php;h=163fec15f76069ca49b730fd6b519604329ab076;hb=07ac0a0e1c630a17c1a58e03f1f17c1bee680bad;hp=ee808594438db16295ca8c916ad7f772bfc504de;hpb=1c4e78c5d68b97b82a3b930aa6db1e6df188f653;p=mailer.git diff --git a/inc/inc-functions.php b/inc/inc-functions.php index ee80859443..163fec15f7 100644 --- a/inc/inc-functions.php +++ b/inc/inc-functions.php @@ -14,8 +14,6 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009, 2010 by Mailer Developer Team * @@ -118,7 +116,7 @@ function loadInclude ($inc) { // Do we have cache? if (!isset($GLOBALS['inc_loaded'][$inc])) { // Add the path. This is why we need a trailing slash in config.php - $GLOBALS['inc_loaded'][$inc] = getConfig('PATH') . $inc; + $GLOBALS['inc_loaded'][$inc] = getPath() . $inc; // Is the include file there? if (!isIncludeReadable($inc)) { @@ -134,7 +132,7 @@ function loadInclude ($inc) { // Loads an include file once function loadIncludeOnce ($inc) { // Remove double path - $inc = str_replace(getConfig('PATH'), '', $inc); + $inc = str_replace(getPath(), '', $inc); // Is it not loaded? if (!isset($GLOBALS['load_once'][$inc])) { @@ -151,10 +149,10 @@ function isIncludeReadable ($inc) { // Do we have cache? if (!isset($GLOBALS['inc_readable'][$inc])) { // Remove double path - $inc = str_replace(getConfig('PATH'), '', $inc); + $inc = str_replace(getPath(), '', $inc); // Construct FQFN - $FQFN = getConfig('PATH') . $inc; + $FQFN = getPath() . $inc; // Is it readable? $GLOBALS['inc_readable'][$inc] = isFileReadable($FQFN);