Skip to content

Commit 645d237

Browse files
committed
Release 5.1.11.1
1 parent c190649 commit 645d237

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

Diff for: pkg_kunena.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<extension type="package" version="3.4" method="upgrade">
44
<name>Kunena Forum Package</name>
55
<packagename>kunena</packagename>
6-
<version>5.1.12-DEV</version>
7-
<versionname>Internal</versionname>
6+
<version>5.1.11.1</version>
7+
<versionname>Kerberos</versionname>
88
<creationDate>@kunenaversiondate@</creationDate>
99
<author>Kunena Team</author>
1010
<authorEmail>kunena@kunena.org</authorEmail>

Diff for: src/components/com_kunena/views/common/view.html.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,8 @@ public function displayLoginBox($tpl = null)
579579
// $cache->store($contents, $cachekey, $cachegroup);
580580
}
581581

582-
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w-_]+))?\]|', array($this, 'fillLoginBoxInfo'), $contents);
582+
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w_-]+))?\]|', array($this, 'fillLoginBoxInfo'), $contents);
583+
583584
echo $contents;
584585
}
585586

Diff for: src/components/com_kunena/views/topics/view.html.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public function displayTopicRows()
200200

201201
if ($usertype == 'guest')
202202
{
203-
$contents = preg_replace_callback('\|\[K=(\w+)(?:\:([\w-_]+))?\]|', array($this, 'fillTopicInfo'), $contents);
203+
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
204204
}
205205

206206
// FIXME: enable caching after fixing the issues
@@ -209,7 +209,7 @@ public function displayTopicRows()
209209

210210
if ($usertype != 'guest')
211211
{
212-
$contents = preg_replace_callback('\|\[K=(\w+)(?:\:([\w-_]+))?\]|', array($this, 'fillTopicInfo'), $contents);
212+
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
213213
}
214214

215215
echo $contents;
@@ -293,7 +293,7 @@ public function displayPostRows()
293293

294294
if ($usertype == 'guest')
295295
{
296-
$contents = preg_replace_callback('\|\[K=(\w+)(?:\:([\w-_]+))?\]|', array($this, 'fillTopicInfo'), $contents);
296+
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
297297
}
298298

299299
// FIXME: enable caching after fixing the issues
@@ -302,7 +302,7 @@ public function displayPostRows()
302302

303303
if ($usertype != 'guest')
304304
{
305-
$contents = preg_replace_callback('\|\[K=(\w+)(?:\:([\w-_]+))?\]|', array($this, 'fillTopicInfo'), $contents);
305+
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w_-]+))?\]|', array($this, 'fillTopicInfo'), $contents);
306306
}
307307

308308
echo $contents;

Diff for: src/pkg_kunena.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<extension type="package" version="3.4" method="upgrade">
44
<name>Kunena Forum Package</name>
55
<packagename>kunena</packagename>
6-
<version>5.1.12-DEV</version>
7-
<versionname>Internal</versionname>
6+
<version>5.1.11.1</version>
7+
<versionname>Kerberos</versionname>
88
<creationDate>2019-04-21</creationDate>
99
<author>Kunena Team</author>
1010
<authorEmail>kunena@kunena.org</authorEmail>

0 commit comments

Comments
 (0)