Skip to content

Commit b79a7f6

Browse files
author
Leonid Vakulenko
committed
Webasyst Framework v.3.8.1
* Fixed error which occurred on website pages with some account configurations after the update to version 3.8.0.
1 parent 907b504 commit b79a7f6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

wa-apps/installer/lib/config/app.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
'description' => 'Install new apps from the Webasyst Store',
55
'icon' => 'img/installer.svg',
66
'mobile' => false,
7-
'version' => '3.8.0',
8-
'critical' => '3.8.0',
7+
'version' => '3.8.1',
8+
'critical' => '3.8.1',
99
'system' => true,
1010
'vendor' => 'webasyst',
1111
'csrf' => true,

wa-system/view/waViewHelper.class.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ private function getFavicons($domain_config)
383383
{
384384
$links = '';
385385
$domain_favicons = ifset($domain_config['favicons']);
386-
if (!is_array($domain_favicons)) {
386+
if (!is_array($domain_favicons) && wa()->appExists('site')) {
387+
wa('site');
387388
siteHelper::updateFaviconsConfig($domain_config);
388389
$domain_favicons = $domain_config['favicons'];
389390
}

wa-system/webasyst/lib/config/app.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
return array(
44
'name' => 'Webasyst',
55
'prefix' => 'webasyst',
6-
'version' => '3.8.0',
7-
'critical' => '3.8.0',
6+
'version' => '3.8.1',
7+
'critical' => '3.8.1',
88
'vendor' => 'webasyst',
99
'csrf' => true,
1010
'header_items' => array(

0 commit comments

Comments
 (0)