Skip to content
Snippets Groups Projects
Commit 304e2bf2 authored by Viktor Holovachek's avatar Viktor Holovachek
Browse files

Issue #3489553 - Fix placeholder

parent f51e907d
No related branches found
No related tags found
1 merge request!12Issue #3489553 - Fix placeholder
Pipeline #349204 passed with warnings
......@@ -60,10 +60,10 @@ function getid3_instance(): ?getID3 {
$id3_lib_available = getid3_load();
if ($id3_lib_available == FALSE) {
$params = [
'!admin-settings-audio-getid3' => Url::fromRoute('getid3.config'),
'@admin-settings-audio-getid3' => Url::fromRoute('getid3.config')->toString(),
];
\Drupal::messenger()
->addError(t("The getid3() module cannot find the getID3 library used to read and write ID3 tags. The site administrator will need to verify that it is installed and then update the <a href='!admin-settings-audio-getid3'>settings</a>.", $params));
->addError(t("The getid3() module cannot find the getID3 library used to read and write ID3 tags. The site administrator will need to verify that it is installed and then update the <a href='@admin-settings-audio-getid3'>settings</a>.", $params));
return NULL;
}
......
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