Skip to content

Commit

Permalink
[2.5.18] Fix issue Deprecation behavior:modal in Joomla 4
Browse files Browse the repository at this point in the history
  • Loading branch information
sonvnn committed Aug 3, 2022
1 parent 10e0592 commit 2a4c6d3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions framework/library/astroid/Helper/Overrides.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ public static function rename()
if (is_dir($path . 'com_config')) {
Folder::move($path . 'com_config', $path . (str_replace(basename('com_config'), basename('com_config') . '-' . date('Y-m-d'), 'com_config')));
}
if (is_dir($path . 'layouts/joomla/editors')) {
Folder::delete($path . 'layouts/joomla/editors');
}
}

//Fix alert issue.
Expand Down

1 comment on commit 2a4c6d3

@sonvnn
Copy link
Member Author

@sonvnn sonvnn commented on 2a4c6d3 Aug 3, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This commit will solve issue #146

Please sign in to comment.