From 7f307b8a949e47d289eee81a5bf375b2b7a9e853 Mon Sep 17 00:00:00 2001 From: messju Date: Sun, 4 May 2003 22:07:10 +0000 Subject: [PATCH] fixed DIR_SEP in html_image-plugin --- libs/plugins/function.html_image.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/function.html_image.php b/libs/plugins/function.html_image.php index 8c7507b3..e92dfd27 100644 --- a/libs/plugins/function.html_image.php +++ b/libs/plugins/function.html_image.php @@ -93,7 +93,7 @@ function smarty_function_html_image($params, &$smarty) return; } - if(substr($file,0,1) == DIR_SEP) { + if(substr($file,0,1) == DIRECTORY_SEPARATOR) { $_image_path = $basedir . $file; } else { $_image_path = $file;