X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-usage.php;h=fa5f7747a01e1fbf60ef2a0ffc6ffcfd51fd1167;hb=4e828541f3977c085ef54d3490b3e0069eb09a06;hp=e9d28dfe4efba08f16bc71253f0a423350915309;hpb=7c9cf221f2f7ef99d45fc233bf346c9f9168ef3e;p=mailer.git diff --git a/inc/modules/admin/what-usage.php b/inc/modules/admin/what-usage.php index e9d28dfe4e..fa5f7747a0 100644 --- a/inc/modules/admin/what-usage.php +++ b/inc/modules/admin/what-usage.php @@ -45,37 +45,43 @@ $usage = getConfig('usage_base')."/"; if (!empty($_GET['image'])) { if ($_GET['type'] == "usage") { - $file = sprintf("%s%s/usage.png", PATH, getConfig('usage_base')); + $FQFN = sprintf("%s%s/usage.png", + constant('PATH'), + getConfig('usage_base') + ); } else { if (strpos($_GET['image'], "\\") > 0) $_GET['image'] = substr($_GET['image'], 0, strpos($_GET['image'], "\\")); - $file = sprintf("%s%s/%s_usage_%s.png", - PATH, + $FQFN = sprintf("%s%s/%s_usage_%s.png", + constant('PATH'), getConfig('usage_base'), SQL_ESCAPE($_GET['type']), SQL_ESCAPE($_GET['image']) ); } - if (FILE_READABLE($file)) { - $image = imagecreatefrompng($file); + if (FILE_READABLE($FQFN)) { + $image = imagecreatefrompng($FQFN); header("Content-type: image/png"); imagepng($image); imagedestroy($image); } exit(); } elseif (empty($_GET['usage'])) { - $file = sprintf("%s%s/index.html", PATH, getConfig('usage_base')); + $FQFN = sprintf("%s%s/index.html", + constant('PATH'), + getConfig('usage_base') + ); } else { - $file = sprintf("%s%s/usage_%s.html", - PATH, + $FQFN = sprintf("%s%s/usage_%s.html", + constant('PATH'), getConfig('usage_base'), SQL_ESCAPE($_GET['usage']) ); } -if ((!empty($file)) && (FILE_READABLE($file) { +if ((!empty($FQFN)) && (FILE_READABLE($FQFN) { // @TODO This code is double, see LOAD_TEMPLATE and LOAD_EMAIL_TEMPLATE in functions.php - $tmpl_file = READ_FILE($file); + $tmpl_file = READ_FILE($FQFN); $tmpl_file = addslashes($tmpl_file); $tmpl_file = "\$content=\"".$tmpl_file."\";"; eval($tmpl_file);