Skip to content

Commit eec6e90

Browse files
committed
Merge branch '6.2' into 6.3
2 parents e51ad8b + 80ab21b commit eec6e90

3 files changed

Lines changed: 38 additions & 8 deletions

File tree

.github/workflows/xml.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: XML
2+
3+
on:
4+
push:
5+
branches:
6+
- '6.0'
7+
- '6.1'
8+
- '6.2'
9+
- '6.3'
10+
paths:
11+
- '**.xml'
12+
pull_request:
13+
paths:
14+
- '**.xml'
15+
16+
permissions:
17+
contents: read
18+
19+
jobs:
20+
syntax:
21+
name: Check Syntax
22+
runs-on: ubuntu-latest
23+
steps:
24+
- name: Install xmllint
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y --no-install-recommends libxml2-utils
28+
- name: Checkout
29+
uses: actions/checkout@v6
30+
- name: Run xmllint
31+
run: |
32+
! find . -type f -name '*.xml' -exec xmllint --noout '{}' \; 2>&1 | grep -v '^$'

files/lib/system/endpoint/controller/core/conversations/GetConversationHeaderTitle.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __invoke(ServerRequestInterface $request, array $variables): Res
4343

4444
private function assertConversationIsAccessible(Conversation $conversation): void
4545
{
46-
if (!$conversation->isActiveParticipant()) {
46+
if (!$conversation->canRead()) {
4747
throw new PermissionDeniedException();
4848
}
4949
}

package.xml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<packagename language="de">WoltLab Suite Core: Konversationen</packagename>
66
<packagedescription>Private conversations between multiple users.</packagedescription>
77
<packagedescription language="de">Private Konversationen zwischen mehreren Benutzern.</packagedescription>
8-
<version>6.2.1</version>
9-
<date>2026-03-07</date>
8+
<version>6.2.3</version>
9+
<date>2026-04-20</date>
1010
</packageinformation>
1111

1212
<authorinformation>
@@ -15,7 +15,7 @@
1515
</authorinformation>
1616

1717
<requiredpackages>
18-
<requiredpackage minversion="6.2.1">com.woltlab.wcf</requiredpackage>
18+
<requiredpackage minversion="6.2.3">com.woltlab.wcf</requiredpackage>
1919
</requiredpackages>
2020

2121
<excludedpackages>
@@ -57,12 +57,10 @@
5757
<instruction type="userGroupOption"/>
5858
</instructions>
5959

60-
<instructions type="update" fromversion="6.2.0">
60+
<instructions type="update" fromversion="6.2.1">
6161
<instruction type="file"/>
62-
<instruction type="template"/>
63-
<instruction type="userGroupOption"/>
6462
</instructions>
65-
<instructions type="update" fromversion="6.2.1 dev 2">
63+
<instructions type="update" fromversion="6.2.3 dev 1">
6664
<void/>
6765
</instructions>
6866
</package>

0 commit comments

Comments
 (0)