From fc03e8b19b56acac9827923d3cdc69688d699aa0 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Thu, 21 Sep 2006 13:29:22 +0000 Subject: [PATCH 1/1] Fixed error check git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11729 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/template/template.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/template/template.class.php b/class/template/template.class.php index 84310b8d..db04cfa6 100755 --- a/class/template/template.class.php +++ b/class/template/template.class.php @@ -403,7 +403,7 @@ return substr($this->template_dir, strlen(SM_PATH)); // Get right template file $template = $this->get_template_file_path($file); - if (!file_exists($template)) { + if (empty($template)) { trigger_error('The template "'.htmlspecialchars($file).'" could not be fetched!', E_USER_ERROR); } else { ob_start(); -- 2.25.1