Skip to content

Commit 60c8327

Browse files
committed
[FIX] Minimum PHP version UP.
1 parent 9436cb6 commit 60c8327

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Most significant, though, is **Evolution CMS's** ability to empower you to quick
3535

3636
## Install
3737
You can use the single click installer: [Evolution CMS Installer](https://github.com/evolution-cms/installer)
38-
Evolution CMS 3.2.x requires **PHP >= 8.1**
38+
Evolution CMS 3.2.x requires **PHP >= 8.2**
3939

4040
## Docker
4141

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"vendor-dir": "vendor"
3636
},
3737
"require": {
38-
"php": ">=8.1",
38+
"php": ">=8.2",
3939
"ext-pdo": "*",
4040
"ext-json": "*"
4141
},

core/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}
2727
],
2828
"require": {
29-
"php": ">=8.1",
29+
"php": ">=8.2",
3030
"composer/composer": "*",
3131
"dmitry-suffi/redis-session-handler": "*",
3232
"doctrine/dbal": "3.*",

manager/media/script/main.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,8 +488,9 @@ function BrowseFileServer(ctrl) {
488488

489489
function SetUrlChange(el) {
490490
if ('createEvent' in document) {
491-
var evt = document.createEvent('HTMLEvents');
492-
evt.initEvent('change', false, true);
491+
//var evt = document.createEvent('HTMLEvents');
492+
//evt.initEvent('change', false, true);
493+
let evt = new Event("change", {"bubbles":false, "cancelable":true});
493494
el.dispatchEvent(evt);
494495
} else {
495496
el.fireEvent('onchange');

manager/views/partials/footer.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
global $SystemAlertMsgQueque;
33
// display system alert window if messages are available
4-
if (count($SystemAlertMsgQueque) > 0) {
4+
if (count($SystemAlertMsgQueque ?? []) > 0) {
55
include MODX_MANAGER_PATH . 'includes/sysalert.display.inc.php';
66
}
77
?>

0 commit comments

Comments
 (0)