Skip to content

Commit

Permalink
Release 5.1.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
810 committed Apr 21, 2019
1 parent c190649 commit 645d237
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pkg_kunena.xml
Expand Up @@ -3,8 +3,8 @@
<extension type="package" version="3.4" method="upgrade">
<name>Kunena Forum Package</name>
<packagename>kunena</packagename>
<version>5.1.12-DEV</version>
<versionname>Internal</versionname>
<version>5.1.11.1</version>
<versionname>Kerberos</versionname>
<creationDate>@kunenaversiondate@</creationDate>
<author>Kunena Team</author>
<authorEmail>kunena@kunena.org</authorEmail>
Expand Down
3 changes: 2 additions & 1 deletion src/components/com_kunena/views/common/view.html.php
Expand Up @@ -579,7 +579,8 @@ public function displayLoginBox($tpl = null)
// $cache->store($contents, $cachekey, $cachegroup);
}

$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w-_]+))?\]|', array($this, 'fillLoginBoxInfo'), $contents);
$contents = preg_replace_callback('|\[K=(\w+)(?:\:([\w_-]+))?\]|', array($this, 'fillLoginBoxInfo'), $contents);

echo $contents;
}

Expand Down
8 changes: 4 additions & 4 deletions src/components/com_kunena/views/topics/view.html.php
Expand Up @@ -200,7 +200,7 @@ public function displayTopicRows()

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

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

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

echo $contents;
Expand Down Expand Up @@ -293,7 +293,7 @@ public function displayPostRows()

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

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

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

echo $contents;
Expand Down
4 changes: 2 additions & 2 deletions src/pkg_kunena.xml
Expand Up @@ -3,8 +3,8 @@
<extension type="package" version="3.4" method="upgrade">
<name>Kunena Forum Package</name>
<packagename>kunena</packagename>
<version>5.1.12-DEV</version>
<versionname>Internal</versionname>
<version>5.1.11.1</version>
<versionname>Kerberos</versionname>
<creationDate>2019-04-21</creationDate>
<author>Kunena Team</author>
<authorEmail>kunena@kunena.org</authorEmail>
Expand Down

0 comments on commit 645d237

Please sign in to comment.