diff options
| author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-10-30 19:17:00 +0200 |
|---|---|---|
| committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-11-19 23:58:04 +0200 |
| commit | 796e22d67557f15fe2902130eead74809b481177 (patch) | |
| tree | 06aac019bd5606da2a384d789a22d28d01341336 | |
| parent | 366a224a248a9cac50a1d0df50ae91c89954aabc (diff) | |
| download | forums-796e22d67557f15fe2902130eead74809b481177.tar forums-796e22d67557f15fe2902130eead74809b481177.tar.gz forums-796e22d67557f15fe2902130eead74809b481177.tar.bz2 forums-796e22d67557f15fe2902130eead74809b481177.tar.xz forums-796e22d67557f15fe2902130eead74809b481177.zip | |
[ticket/11984] Hide <dfn> for invalid extensions
PHPBB3-11984
| -rw-r--r-- | phpBB/adm/style/admin.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/adm/style/admin.js b/phpBB/adm/style/admin.js index e9f0f1e512..dd46124f97 100644 --- a/phpBB/adm/style/admin.js +++ b/phpBB/adm/style/admin.js @@ -133,6 +133,9 @@ function parse_document(container) column += colspan; }); }); + + // Remove <dfn> in disabled extensions list + $this.find('tr.ext_disabled > .empty:nth-child(2) + .empty').siblings(':first-child').children('dfn').remove(); }); /** |
