diff options
author | Matt Friedman <maf675@gmail.com> | 2013-10-19 08:48:41 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2013-10-19 08:48:41 -0700 |
commit | 2b7120508b81300134557bfc2cba39a4bc160055 (patch) | |
tree | f31dba608fc5667aeeb8fc103fc5017a6befd47b /phpBB | |
parent | 6fce4b44a8daaad76e9f819c69699d78d1d763b4 (diff) | |
download | forums-2b7120508b81300134557bfc2cba39a4bc160055.tar forums-2b7120508b81300134557bfc2cba39a4bc160055.tar.gz forums-2b7120508b81300134557bfc2cba39a4bc160055.tar.bz2 forums-2b7120508b81300134557bfc2cba39a4bc160055.tar.xz forums-2b7120508b81300134557bfc2cba39a4bc160055.zip |
[ticket/11935] Fix incorrect alt tags that should be title tags
PHPBB3-11935
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/adm/style/acp_ext_list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/style/acp_ext_list.html b/phpBB/adm/style/acp_ext_list.html index 53de0b4d12..4e13b1974a 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -28,7 +28,7 @@ <td style="text-align: center;"><a href="{enabled.U_DETAILS}">{L_DETAILS}</a></td> <td style="text-align: center;"> <!-- BEGIN actions --> - <a href="{enabled.actions.U_ACTION}" alt="{enabled.actions.L_ACTION}">{enabled.actions.L_ACTION}</a> + <a href="{enabled.actions.U_ACTION}" title="{enabled.actions.L_ACTION}">{enabled.actions.L_ACTION}</a> <!-- IF not enabled.actions.S_LAST_ROW --> | <!-- ENDIF --> <!-- END actions --> </td> @@ -48,7 +48,7 @@ </td> <td style="text-align: center;"> <!-- BEGIN actions --> - <a href="{disabled.actions.U_ACTION}" alt="{disabled.actions.L_ACTION}">{disabled.actions.L_ACTION}</a> + <a href="{disabled.actions.U_ACTION}" title="{disabled.actions.L_ACTION}">{disabled.actions.L_ACTION}</a> <!-- IF not disabled.actions.S_LAST_ROW --> | <!-- ENDIF --> <!-- END actions --> </td> |