Skip to content

Commit

Permalink
Downgrade CKEditor to 4.22.1 (#883)
Browse files Browse the repository at this point in the history
CKEditor 4.23 is an LTS version, which requires a license.
  • Loading branch information
blackcoder87 authored Dec 4, 2023
1 parent 93fe8ed commit c0e1abc
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions application/modules/admin/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,10 @@ public function getUpdate($installedVersion)
// Update vendor folder
replaceVendorDirectory();
break;
case "2.1.55":
// Update vendor folder. Downgrade CKEditor to 4.22.1. Version 4.23 is an LTS version, which requires a license.
replaceVendorDirectory();
break;
}

return 'Update function executed.';
Expand Down
2 changes: 1 addition & 1 deletion application/modules/bbcodeconvert/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Config extends Install
{
public $config = [
'key' => 'bbcodeconvert',
'version' => '1.0.3',
'version' => '1.0.4',
'icon_small' => 'fa-solid fa-arrow-right-arrow-left',
'author' => 'ilch.de',
'link' => 'https://www.ilch.de',
Expand Down
4 changes: 2 additions & 2 deletions application/modules/bbcodeconvert/controllers/admin/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
class Index extends Admin
{
private const supportedModules = [
'contact' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55'],
'contact' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55', '2.1.56'],
'events' => ['1.22.0', '1.22.1'],
'forum' => ['1.33.0', '1.34.0', '1.34.1', '1.34.2', '1.34.3', '1.34.4'],
'guestbook' => ['1.13.0', '1.13.1'],
'jobs' => ['1.6.0'],
'kvticket' => ['1.5.0'],
'radiohoerercharts' => ['1.8.0', '1.8.1', '1.8.2'],
'teams' => ['1.23.0', '1.23.1'],
'user' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55']
'user' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55', '2.1.56']
];

private const supportedLayouts = [
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"fortawesome/font-awesome": "^6.2.1",
"npm-asset/jquery": "^3.5",
"npm-asset/jquery-ui": "^1.13",
"ckeditor/ckeditor": "^4.14",
"ckeditor/ckeditor": "4.22.1",
"phpmailer/phpmailer": "~6.1",
"harvesthq/chosen": "^1.8",
"ezyang/htmlpurifier": "^4.12",
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
$serverTimeZone = @date_default_timezone_get();
date_default_timezone_set('UTC');

define('VERSION', '2.1.55');
define('VERSION', '2.1.56');
define('SERVER_TIMEZONE', $serverTimeZone);
define('DEFAULT_MODULE', 'page');
define('DEFAULT_LAYOUT', 'index');
Expand Down

0 comments on commit c0e1abc

Please sign in to comment.