From 96ee4ced98256aad184d53fb4e5cc65b0e23d5f6 Mon Sep 17 00:00:00 2001 From: Jude Anthony Date: Wed, 19 Mar 2008 11:33:28 +0000 Subject: [PATCH] Use language constant NOT_FOUND --- include/functions_smarty.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions_smarty.inc.php b/include/functions_smarty.inc.php index 4af1ce2e..1ba7b4db 100644 --- a/include/functions_smarty.inc.php +++ b/include/functions_smarty.inc.php @@ -789,7 +789,7 @@ function serendipity_smarty_getImageSize($params, &$smarty) { } // If no file, trigger an error if (!file_exists($file)) { - $smarty->trigger_error(__FUNCTION__ .': file ' . $params['file'] . 'not found '); + $smarty->trigger_error(__FUNCTION__ .': file ' . $params['file'] . NOT_FOUND . ' '); return; } $smarty->assign($params['assign'], serendipity_getimagesize($file));