aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/avatar/driver/local.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/avatar/driver/local.php b/phpBB/includes/avatar/driver/local.php
index e4648381c2..080921c325 100644
--- a/phpBB/includes/avatar/driver/local.php
+++ b/phpBB/includes/avatar/driver/local.php
@@ -95,6 +95,10 @@ class phpbb_avatar_driver_local extends phpbb_avatar_driver
'AVATAR_FILE' => $img['filename'],
));
+ $template->assign_block_vars('av_local_row.av_local_option', array(
+ 'S_OPTIONS_AVATAR' => $img['filename']
+ ));
+
$col_count = ($col_count + 1) % $table_cols;
++$av_pos;