match first character of file-attribute against "/" instead of

DIRECTORY_SEPARATOR since it is a url-path and not a file-path.
This commit is contained in:
messju
2003-06-30 15:44:25 +00:00
parent f866f04d66
commit ed6fee3542

View File

@@ -113,8 +113,8 @@ function smarty_function_html_image($params, &$smarty)
return; return;
} }
} }
$_params = array('resource_type' => 'file', 'resource_name' => $_image_path); $_params = array('resource_type' => 'file', 'resource_name' => $_image_path);
require_once(SMARTY_DIR . 'core' . DIRECTORY_SEPARATOR . 'core.is_secure.php'); require_once(SMARTY_DIR . 'core' . DIRECTORY_SEPARATOR . 'core.is_secure.php');
if(!$smarty->security && !smarty_core_is_secure($_params, $smarty)) { if(!$smarty->security && !smarty_core_is_secure($_params, $smarty)) {
$smarty->trigger_error("html_image: (secure) '$_image_path' not in secure directory", E_USER_NOTICE); $smarty->trigger_error("html_image: (secure) '$_image_path' not in secure directory", E_USER_NOTICE);
return; return;