Skip to content

Commit e5d4321

Browse files
Merge pull request #190 from joomdev/dev
Dev
2 parents 537b2c2 + 48abe70 commit e5d4321

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

astroid/astroid-framework/astroid.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<libraryname>astroid</libraryname>
55
<author>JoomDev</author>
66
<creationDate>Sept 2020</creationDate>
7-
<version>2.4.4</version>
7+
<version>2.4.5</version>
88
<url>https://www.astroidframework.com</url>
99
<copyright>Copyright (C) 2020 Joomdev, Inc. All rights reserved.</copyright>
1010
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>

astroid/astroid-framework/framework/library/astroid/Component/Menu.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
if (ASTROID_JOOMLA_VERSION == 3) {
1717
\JLoader::register('ModMenuHelper', JPATH_SITE . '/modules/mod_menu/helper.php');
18-
//\JLoader::registerAlias('MenuHelper', 'ModMenuHelper');
18+
\JLoader::registerAlias('MenuHelper', 'ModMenuHelper');
1919
} else {
2020
\JLoader::registerAlias('MenuHelper', '\\Joomla\\Module\\Menu\\Site\\Helper\\MenuHelper');
2121
}
@@ -46,10 +46,10 @@ public static function getMenu($menutype = '', $nav_class = [], $logo = null, $l
4646
$menu_params = new \JRegistry();
4747
$menu_params->loadString($header_menu_params);
4848

49-
$list = \ModMenuHelper::getList($menu_params);
50-
$base = \ModMenuHelper::getBase($menu_params);
51-
$active = \ModMenuHelper::getActive($menu_params);
52-
$default = \ModMenuHelper::getDefault();
49+
$list = \MenuHelper::getList($menu_params);
50+
$base = \MenuHelper::getBase($menu_params);
51+
$active = \MenuHelper::getActive($menu_params);
52+
$default = \MenuHelper::getDefault();
5353

5454
$active_id = $active->id;
5555
$default_id = $default->id;
@@ -573,10 +573,10 @@ public static function getMobileMenu($menutype = '', $nav_class = [])
573573
$menu_params = new \JRegistry();
574574
$menu_params->loadString($header_menu_params);
575575

576-
$list = \ModMenuHelper::getList($menu_params);
577-
$base = \ModMenuHelper::getBase($menu_params);
578-
$active = \ModMenuHelper::getActive($menu_params);
579-
$default = \ModMenuHelper::getDefault();
576+
$list = \MenuHelper::getList($menu_params);
577+
$base = \MenuHelper::getBase($menu_params);
578+
$active = \MenuHelper::getActive($menu_params);
579+
$default = \MenuHelper::getDefault();
580580

581581
$active_id = $active->id;
582582
$default_id = $default->id;

astroid/astroid-framework/framework/library/astroid/Helper/Constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
class Constants
1515
{
16-
public static $astroid_version = '2.4.4';
16+
public static $astroid_version = '2.4.5';
1717
public static $fontawesome_version = '5.14.0';
1818
public static $animatecss_version = '3.7.0';
1919
public static $forum_link = 'https://www.joomdev.com/forum/astroid-framework';

astroid/astroid-framework/plugins/astroid/astroid.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>Astroid Plugin</name>
44
<author>JoomDev</author>
55
<creationDate>Sept 2020</creationDate>
6-
<version>2.4.4</version>
6+
<version>2.4.5</version>
77
<url>https://www.astroidframework.com</url>
88
<copyright>Copyright (C) 2020 Joomdev, Inc. All rights reserved.</copyright>
99
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>

pkg_astroid.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<packagerurl>https://www.astroidframework.com</packagerurl>
77
<author>JoomDev</author>
88
<creationDate>Sept 2020</creationDate>
9-
<version>2.4.4</version>
9+
<version>2.4.5</version>
1010
<url>https://www.joomdev.com</url>
1111
<copyright>Copyright (C) 2020 Joomdev, Inc. All rights reserved.</copyright>
1212
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>

0 commit comments

Comments
 (0)