2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
watchdog('image','Image resize failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['height'].'x'.$image->info['height']),WATCHDOG_ERROR);
watchdog('image','Image resize failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['width'].'x'.$image->info['height']),WATCHDOG_ERROR);
returnFALSE;
}
returnTRUE;
...
...
@@ -109,7 +109,7 @@ function image_scale_effect(&$image, $data) {
watchdog('image','Image scale failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['height'].'x'.$image->info['height']),WATCHDOG_ERROR);
watchdog('image','Image scale failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['width'].'x'.$image->info['height']),WATCHDOG_ERROR);
returnFALSE;
}
returnTRUE;
...
...
@@ -143,7 +143,7 @@ function image_crop_effect(&$image, $data) {
watchdog('image','Image crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['height'].'x'.$image->info['height']),WATCHDOG_ERROR);
watchdog('image','Image crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['width'].'x'.$image->info['height']),WATCHDOG_ERROR);
returnFALSE;
}
returnTRUE;
...
...
@@ -165,7 +165,7 @@ function image_crop_effect(&$image, $data) {
watchdog('image','Image scale and crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['height'].'x'.$image->info['height']),WATCHDOG_ERROR);
watchdog('image','Image scale and crop failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['width'].'x'.$image->info['height']),WATCHDOG_ERROR);
returnFALSE;
}
returnTRUE;
...
...
@@ -184,7 +184,7 @@ function image_scale_and_crop_effect(&$image, $data) {
*/
functionimage_desaturate_effect(&$image,$data){
if(!image_desaturate($image)){
watchdog('image','Image desaturate failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['height'].'x'.$image->info['height']),WATCHDOG_ERROR);
watchdog('image','Image desaturate failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['width'].'x'.$image->info['height']),WATCHDOG_ERROR);
returnFALSE;
}
returnTRUE;
...
...
@@ -237,7 +237,7 @@ function image_rotate_effect(&$image, $data) {
watchdog('image','Image rotate failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['height'].'x'.$image->info['height']),WATCHDOG_ERROR);
watchdog('image','Image rotate failed using the %toolkit toolkit on %path (%mimetype, %dimensions)',array('%toolkit'=>$image->toolkit,'%path'=>$image->source,'%mimetype'=>$image->info['mime_type'],'%dimensions'=>$image->info['width'].'x'.$image->info['height']),WATCHDOG_ERROR);