feat: new bludit version with bug fix for php 5
This commit is contained in:
parent
fa736d907b
commit
3c02c86498
31 changed files with 96 additions and 83 deletions
|
@ -1,9 +1,9 @@
|
||||||
<?php defined('BLUDIT') or die('Bludit CMS.');
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
||||||
|
|
||||||
// Bludit version
|
// Bludit version
|
||||||
define('BLUDIT_VERSION', '3.16.1');
|
define('BLUDIT_VERSION', '3.16.2');
|
||||||
define('BLUDIT_CODENAME', 'Valencia');
|
define('BLUDIT_CODENAME', 'Valencia');
|
||||||
define('BLUDIT_RELEASE_DATE', '2024-08-06');
|
define('BLUDIT_RELEASE_DATE', '2024-08-23');
|
||||||
define('BLUDIT_BUILD', '20240806');
|
define('BLUDIT_BUILD', '20240806');
|
||||||
|
|
||||||
// Change to TRUE for debugging
|
// Change to TRUE for debugging
|
||||||
|
|
|
@ -632,11 +632,24 @@ class Pages extends dbJSON
|
||||||
|
|
||||||
private function sortByPositionLowToHigh($a, $b)
|
private function sortByPositionLowToHigh($a, $b)
|
||||||
{
|
{
|
||||||
return $a['position'] <=> $b['position'];
|
if ($a['position'] < $b['position']) {
|
||||||
|
return -1;
|
||||||
|
} elseif ($a['position'] > $b['position']) {
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private function sortByPositionHighToLow($a, $b)
|
private function sortByPositionHighToLow($a, $b)
|
||||||
{
|
{
|
||||||
return $a['position'] < $b['position'];
|
if ($a['position'] > $b['position']) {
|
||||||
|
return -1;
|
||||||
|
} elseif ($a['position'] < $b['position']) {
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sort pages by date
|
// Sort pages by date
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2023-07-10",
|
"releaseDate": "2023-07-10",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": "",
|
"notes": "",
|
||||||
"type": "theme"
|
"type": "theme"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,6 @@
|
||||||
"version": "2.18.0",
|
"version": "2.18.0",
|
||||||
"releaseDate": "2022-09-20",
|
"releaseDate": "2022-09-20",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2023-07-10",
|
"releaseDate": "2023-07-10",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": "",
|
"notes": "",
|
||||||
"type": "theme"
|
"type": "theme"
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com/plugin/remote-content",
|
"website": "https://plugins.bludit.com/plugin/remote-content",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://plugins.bludit.com",
|
"website": "https://plugins.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://themes.bludit.com",
|
"website": "https://themes.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2023-07-10",
|
"releaseDate": "2023-07-10",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.15",
|
"compatible": "3.15",
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://themes.bludit.com",
|
"website": "https://themes.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2024-08-06",
|
"releaseDate": "2024-08-23",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.16.1",
|
"compatible": "3.16.2",
|
||||||
"notes": ""
|
"notes": ""
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"author": "Bludit",
|
"author": "Bludit",
|
||||||
"email": "",
|
"email": "",
|
||||||
"website": "https://themes.bludit.com",
|
"website": "https://themes.bludit.com",
|
||||||
"version": "3.16.1",
|
"version": "3.16.2",
|
||||||
"releaseDate": "2023-07-??",
|
"releaseDate": "2023-07-??",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"compatible": "3.0",
|
"compatible": "3.0",
|
||||||
|
|
Loading…
Reference in a new issue