diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-09 11:06:36 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-09 11:06:36 +0200 |
commit | c9d159257a4ebbb8a8949844e30459474661de36 (patch) | |
tree | 33a21c0367496a89b9ba8f27771485150e36313a /phpBB/includes/functions_posting.php | |
parent | 1affd348145888e3510f1763b314008313b6b8a2 (diff) | |
parent | a606b1c4805d815515b427151449fa31468d86a0 (diff) | |
download | forums-c9d159257a4ebbb8a8949844e30459474661de36.tar forums-c9d159257a4ebbb8a8949844e30459474661de36.tar.gz forums-c9d159257a4ebbb8a8949844e30459474661de36.tar.bz2 forums-c9d159257a4ebbb8a8949844e30459474661de36.tar.xz forums-c9d159257a4ebbb8a8949844e30459474661de36.zip |
Merge pull request #3868 from Zoddo/ticket/7362
[ticket/7362] Add alt attribute on topic icons
* Zoddo/ticket/7362:
[ticket/7362] Add alt attribute on topic icons
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index ca8baecff8..75d77285a0 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -310,6 +310,7 @@ function posting_gen_topic_icons($mode, $icon_id) { $template->assign_block_vars('topic_icon', array( 'ICON_ID' => $id, + 'ICON_NAME' => $data['img'], 'ICON_IMG' => $root_path . $config['icons_path'] . '/' . $data['img'], 'ICON_WIDTH' => $data['width'], 'ICON_HEIGHT' => $data['height'], |