Skip to content

Commit 7a54d20

Browse files
authored
Merge pull request #355 from iMattPro/updates
Fix problems with clickable rules
2 parents 38d512d + 0ab46f2 commit 7a54d20

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ jobs:
125125
db: "mysql:5.7"
126126
- php: '8.2'
127127
db: "mysql:5.7"
128+
- php: '8.3'
129+
db: "mysql:5.7"
128130

129131
name: PHP ${{ matrix.php }} - ${{ matrix.db_alias != '' && matrix.db_alias || matrix.db }}
130132

@@ -266,6 +268,8 @@ jobs:
266268
db: "postgres:14"
267269
- php: '8.2'
268270
db: "postgres:14"
271+
- php: '8.3'
272+
db: "postgres:14"
269273

270274
name: PHP ${{ matrix.php }} - ${{ matrix.db }}
271275

adm/style/boardrules_manage.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ <h1>{{ lang('ACP_BOARDRULES_MANAGE') }}</h1>
161161
{% if rules.S_IS_CATEGORY %}<img src="images/icon_subfolder.gif" width="27" height="27" alt="{{ lang('ACP_BOARDRULES_CATEGORY') }}">{% else %}<img src="images/icon_folder.gif" width="27" height="27" alt="{{ lang('ACP_BOARDRULES_RULE') }}">{% endif %}
162162
</td>
163163
<td class="forum-desc">
164-
<strong>{% if rules.S_IS_CATEGORY %}<a href="{{ rules.U_RULE }}">{% endif %}{{ rules.RULE_TITLE }}{% if rules.S_IS_CATEGORY %}</a>{% endif %}</strong>
164+
<strong><a href="{{ rules.U_RULE }}">{{ rules.RULE_TITLE }}</a></strong>
165165
</td>
166166
<td class="actions">
167167
<span class="up-disabled" style="display:none;">{{ ICON_MOVE_UP_DISABLED }}</span>

0 commit comments

Comments
 (0)