From 3503aa3d7926d1857d9b4bc9f3e12e69ec9a45ee Mon Sep 17 00:00:00 2001 From: slothman 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 4af1ce2..1ba7b4d 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)); -- 2.39.5