By lewisnyman on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.0.x
Introduced in version:
8.0.0-beta4
Issue links:
Description:
Summary
The following images in the core/misc folder have been removed:
- message-16-error.png
- message-16-help.png
- message-16-info.png
- message-16-warning.png
- message-24-error.png
- message-24-help.png
- message-24-info.png
- message-24-warning.png
- configure.png
- edit.png
- edit-active.png
- watchdog-warning.png
- watchdog-error.png
- watchdog-ok.png
- permissions.png
- draggable.png
- grippie.png
If you referenced these images, you will need to change the path to reference the equivalent SVG images in core/misc/icons.
Before
case UPDATE_CURRENT:
$class = 'ok';
$uri = 'core/misc/watchdog-ok.png';
$text = t('ok');
break;
After
case UPDATE_CURRENT:
$class = 'ok';
$uri = 'core/misc/icons/73b355/check.svg';
$text = t('ok');
break;
Impacts:
Module developers
Themers