diff options
author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-16 11:57:28 +0200 |
---|---|---|
committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2015-09-16 11:57:28 +0200 |
commit | 5b9d8283283eda68f3174199e3c1775d0ef398c1 (patch) | |
tree | 206c0eaf02212240ec8f7f47a516286fab3b1337 /phpBB/adm | |
parent | 2bf9e911010c2975f5aad97c133c70f46f099c44 (diff) | |
parent | a4a99f5ea3df9465b9209f554c379e5474cb8489 (diff) | |
download | forums-5b9d8283283eda68f3174199e3c1775d0ef398c1.tar forums-5b9d8283283eda68f3174199e3c1775d0ef398c1.tar.gz forums-5b9d8283283eda68f3174199e3c1775d0ef398c1.tar.bz2 forums-5b9d8283283eda68f3174199e3c1775d0ef398c1.tar.xz forums-5b9d8283283eda68f3174199e3c1775d0ef398c1.zip |
Merge pull request #3895 from Zoddo/ticket/14154
[ticket/14154] Add extension composer name as tooltip
* Zoddo/ticket/14154:
[ticket/14154] Add extension composer name as tooltip
Diffstat (limited to 'phpBB/adm')
-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 f61be27c9b..fa261ed289 100644 --- a/phpBB/adm/style/acp_ext_list.html +++ b/phpBB/adm/style/acp_ext_list.html @@ -48,7 +48,7 @@ </tr> <!-- BEGIN enabled --> <tr class="ext_enabled"> - <td><strong>{enabled.META_DISPLAY_NAME}</strong></td> + <td><strong title="{enabled.NAME}">{enabled.META_DISPLAY_NAME}</strong></td> <td style="text-align: center;"> <!-- IF enabled.S_VERSIONCHECK --> <strong <!-- IF enabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{enabled.META_VERSION}</strong> @@ -73,7 +73,7 @@ </tr> <!-- BEGIN disabled --> <tr class="ext_disabled"> - <td><strong>{disabled.META_DISPLAY_NAME}</strong></td> + <td><strong title="{disabled.NAME}">{disabled.META_DISPLAY_NAME}</strong></td> <td style="text-align: center;"> <!-- IF disabled.S_VERSIONCHECK --> <strong <!-- IF disabled.S_UP_TO_DATE -->style="color: #228822;"<!-- ELSE -->style="color: #BC2A4D;"<!-- ENDIF -->>{disabled.META_VERSION}</strong> |