From: pdontthink Date: Thu, 21 Sep 2006 13:29:22 +0000 (+0000) Subject: Fixed error check X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=fc03e8b19b56acac9827923d3cdc69688d699aa0 Fixed error check git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11729 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- 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();