diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-09 11:06:58 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-09 11:06:58 +0200 |
commit | 2c188f22d007479477a2f5ede15a2067c7cd2242 (patch) | |
tree | 2258bd5aee22df4af7c9b4f3a9d46bbd271661b6 /phpBB/includes | |
parent | 542d75b3a918a5782a1682003fdc4e1f004afc47 (diff) | |
parent | c9d159257a4ebbb8a8949844e30459474661de36 (diff) | |
download | forums-2c188f22d007479477a2f5ede15a2067c7cd2242.tar forums-2c188f22d007479477a2f5ede15a2067c7cd2242.tar.gz forums-2c188f22d007479477a2f5ede15a2067c7cd2242.tar.bz2 forums-2c188f22d007479477a2f5ede15a2067c7cd2242.tar.xz forums-2c188f22d007479477a2f5ede15a2067c7cd2242.zip |
Merge branch '3.1.x'
* 3.1.x:
[ticket/7362] Add alt attribute on topic icons
Diffstat (limited to 'phpBB/includes')
-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 0f42f1950a..4206c87eb9 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -311,6 +311,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'], |