diff --git a/adm_plugins/random_photo/random_photo.php b/adm_plugins/random_photo/random_photo.php index f31c986024..f19144a650 100644 --- a/adm_plugins/random_photo/random_photo.php +++ b/adm_plugins/random_photo/random_photo.php @@ -129,7 +129,7 @@ if(!is_file($picPath)) { - $picPath = THEME_ADMIDIO_PATH . '/images/nopix.jpg'; + $picPath = THEME_ADMIDIO_PATH . '/images/no_photo_found.png'; } if($plg_photos_show_link && $plg_max_char_per_word > 0) diff --git a/adm_program/modules/photos/photo_show.php b/adm_program/modules/photos/photo_show.php index 0c4013ac99..b7379a65e5 100644 --- a/adm_program/modules/photos/photo_show.php +++ b/adm_program/modules/photos/photo_show.php @@ -114,7 +114,7 @@ else { // kein Bild uebergeben, dann NoPix anzeigen - $image = new Image(THEME_ADMIDIO_PATH . '/images/nopix.jpg'); + $image = new Image(THEME_ADMIDIO_PATH . '/images/no_photo_found.png'); $image->scaleLargerSide($gSettingsManager->getInt('photo_thumbs_scale')); } } @@ -122,7 +122,7 @@ { if (!is_file($picPath)) { - $picPath = THEME_ADMIDIO_PATH . '/images/nopix.jpg'; + $picPath = THEME_ADMIDIO_PATH . '/images/no_photo_found.png'; } // Bild einlesen und scalieren $image = new Image($picPath); diff --git a/adm_themes/modern/images/no_photo_found.png b/adm_themes/modern/images/no_photo_found.png new file mode 100644 index 0000000000..976a3b654c Binary files /dev/null and b/adm_themes/modern/images/no_photo_found.png differ diff --git a/adm_themes/modern/images/nopix.jpg b/adm_themes/modern/images/nopix.jpg deleted file mode 100644 index eeb73fc55f..0000000000 Binary files a/adm_themes/modern/images/nopix.jpg and /dev/null differ