diff options
author | 3D-I <eataly3d@gmail.com> | 2019-08-13 06:22:55 +0200 |
---|---|---|
committer | 3D-I <eataly3d@gmail.com> | 2019-08-13 06:23:12 +0200 |
commit | 66016db386c7d6cc03b3dd73965e53f29d451356 (patch) | |
tree | 089859910abd00bce49f723d41b4171b9efcc86c /phpBB/adm | |
parent | aec25f24ae3cffadd91f7b1542ce632c27030e29 (diff) | |
download | forums-66016db386c7d6cc03b3dd73965e53f29d451356.tar forums-66016db386c7d6cc03b3dd73965e53f29d451356.tar.gz forums-66016db386c7d6cc03b3dd73965e53f29d451356.tar.bz2 forums-66016db386c7d6cc03b3dd73965e53f29d451356.tar.xz forums-66016db386c7d6cc03b3dd73965e53f29d451356.zip |
[ticket/16019] Get rid of the checkbox
PHPBB3-16019
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/acp_styles.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/adm/style/acp_styles.html b/phpBB/adm/style/acp_styles.html index 38bec5a1e4..cfa804090f 100644 --- a/phpBB/adm/style/acp_styles.html +++ b/phpBB/adm/style/acp_styles.html @@ -146,7 +146,9 @@ {styles_list.EXTRA} <td class="{$ROW_CLASS} mark" width="20"> <!-- IF styles_list.STYLE_ID --> - <input class="checkbox" type="checkbox" name="ids[]" value="{styles_list.STYLE_ID}" /> + {% if styles_list.STYLE_NAME !== 'prosilver' %} + <input class="checkbox" type="checkbox" name="ids[]" value="{styles_list.STYLE_ID}" /> + {% endif %} <!-- ELSE --> <!-- IF styles_list.COMMENT != '' --> |