Skip to content
Snippets Groups Projects
Commit eb536bf5 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #24157 by chx/Robin/...: changed file_exists() to is_file() to fix...

- Patch #24157 by chx/Robin/...: changed file_exists() to is_file() to fix several problems with modules using theimage toolkit.
parent abc16b1d
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ function image_toolkit_invoke($method, $params = array()) {
* 'mime_type': image's MIME type ('image/jpeg', 'image/gif', etc.)
*/
function image_get_info($file) {
if (!file_exists($file)) {
if (!is_file($file)) {
return false;
}
......
......@@ -499,7 +499,7 @@ function theme_links($links, $delimiter = ' | ') {
* A string containing the image tag.
*/
function theme_image($path, $alt = '', $title = '', $attributes = NULL, $getsize = TRUE) {
if (!$getsize || (file_exists($path) && (list($width, $height, $type, $image_attributes) = @getimagesize($path)))) {
if (!$getsize || (is_file($path) && (list($width, $height, $type, $image_attributes) = @getimagesize($path)))) {
$attributes = drupal_attributes($attributes);
return '<img src="'. check_url($path) .'" alt="'. check_plain($alt) .'" title="'. check_plain($title) .'" '. $image_attributes . $attributes .'/>';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment