]> git.mjollnir.org Git - s9y.git/commitdiff
Use language constant NOT_FOUND
authorslothman <slothman>
Wed, 19 Mar 2008 11:34:22 +0000 (11:34 +0000)
committerslothman <slothman>
Wed, 19 Mar 2008 11:34:22 +0000 (11:34 +0000)
include/functions_smarty.inc.php

index 4af1ce2e621eeb50ad310909fd13479fd06d08c1..1ba7b4dbf2f6f9f13fbd875fd384c456aadff8b8 100644 (file)
@@ -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));