Skip to content

Commit 5cb30f0

Browse files
committed
add asset url to additional logo paths
1 parent 0675156 commit 5cb30f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

program/include/rcmail_output_html.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1507,9 +1507,9 @@ protected function xml_command($matches)
15071507

15081508
foreach ($logo_types as $type) {
15091509
if (($template_logo = $this->get_template_logo($type)) !== null) {
1510-
$additional_logos[$type] = $this->abs_url($template_logo);
1510+
$additional_logos[$type] = $this->asset_url($template_logo, true);
15111511
} elseif (!empty($attrib['data-src-' . $type])) {
1512-
$additional_logos[$type] = $this->abs_url($attrib['data-src-' . $type]);
1512+
$additional_logos[$type] = $this->asset_url($attrib['data-src-' . $type], true);
15131513
}
15141514
}
15151515

0 commit comments

Comments
 (0)