1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
From: William Desportes <williamdes@wdes.fr>
Date: Wed, 17 Apr 2024 22:21:33 +0200
Subject: Require PHP >= 8.2
Due to packaging complexities, PHP 8.2 is required.
Bug: https://github.com/phpmyadmin/phpmyadmin/issues/19092
Origin: vendor
Forwarded: not-needed
---
index.php | 6 +++---
js/messages.php | 6 +++---
setup/lib/common.inc.php | 6 +++---
url.php | 6 +++---
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/index.php b/index.php
index 8831d47..9234762 100644
--- a/index.php
+++ b/index.php
@@ -11,10 +11,10 @@ if (! defined('ROOT_PATH')) {
// phpcs:enable
}
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
die(
- '<p>PHP 8.0.0+ is required ('
- . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+ '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+ . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
. ' and <a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
. ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
);
diff --git a/js/messages.php b/js/messages.php
index 1e2b249..e395061 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -15,10 +15,10 @@ if (! defined('ROOT_PATH')) {
// phpcs:enable
}
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
die(
- '<p>PHP 8.0.0+ is required ('
- . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+ '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+ . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
. ' and <a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
. ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
);
diff --git a/setup/lib/common.inc.php b/setup/lib/common.inc.php
index b681566..fcd7eef 100644
--- a/setup/lib/common.inc.php
+++ b/setup/lib/common.inc.php
@@ -6,10 +6,10 @@ use PhpMyAdmin\Common;
use PhpMyAdmin\Config\ConfigFile;
use PhpMyAdmin\DatabaseInterface;
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
die(
- '<p>PHP 8.0.0+ is required ('
- . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+ '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+ . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
. ' and <a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
. ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
);
diff --git a/url.php b/url.php
index ebf69df..e972037 100644
--- a/url.php
+++ b/url.php
@@ -11,10 +11,10 @@ if (! defined('ROOT_PATH')) {
// phpcs:enable
}
-if (PHP_VERSION_ID < 80000) {
+if (PHP_VERSION_ID < 80200) {
die(
- '<p>PHP 8.0.0+ is required ('
- . '<a href="https://bugs.launchpad.net/ubuntu/+source/symfony/+bug/1975892">Ubuntu Launchpad bug #1975892</a>'
+ '<p>Due to packaging complexities PHP 8.2.0+ is required ('
+ . '<a href="https://bugs.launchpad.net/bugs/2016016">Ubuntu Launchpad bug #2016016</a>'
. ' and <a href="https://github.com/phpmyadmin/phpmyadmin/issues/17503">phpMyAdmin issue #17503</a>'
. ').</p><p>Currently installed version is: ' . PHP_VERSION . '</p>'
);
|