From 508db95cba619110463a44314e070217167d8ac6 Mon Sep 17 00:00:00 2001 From: slawkens1 Date: Tue, 17 Oct 2017 21:17:06 +0200 Subject: [PATCH] * fixed signatures --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 07c25a7768..0352a079e0 100644 --- a/index.php +++ b/index.php @@ -30,7 +30,7 @@ // ini_set('display_startup_errors', 1); // error_reporting(E_ALL); -if(preg_match("/^(.*)\.(gif|png|jpg|jpeg|tiff|bmp|css|js|less|map|html|php|zip|rar|gz)$/i", $_SERVER['REQUEST_URI'])) { +if(preg_match("/^(.*)\.(gif|jpg|jpeg|tiff|bmp|css|js|less|map|html|php|zip|rar|gz)$/i", $_SERVER['REQUEST_URI'])) { header("HTTP/1.0 404 Not Found"); exit; } @@ -114,7 +114,7 @@ $_REQUEST['name'] = urldecode($tmp[0]); chdir(TOOLS . 'signature'); - include('index.php'); + include(TOOLS . 'signature/index.php'); exit(); }