|
1 | 1 | <?php
|
2 | 2 | /*
|
3 |
| -Version 1.4.0 |
4 |
| -Copyright 2012-2016 - Amaury Balmer ([email protected]) |
| 3 | +Version 1.4.1 |
| 4 | +Copyright 2012-2019 - Amaury Balmer ([email protected]) |
5 | 5 |
|
6 | 6 | This program is free software; you can redistribute it and/or modify
|
7 | 7 | it under the terms of the GNU General Public License, version 2, as
|
@@ -43,7 +43,7 @@ function phpwpinfo() {
|
43 | 43 | */
|
44 | 44 | class PHP_WP_Info {
|
45 | 45 | private $debug_mode = true;
|
46 |
| - private $php_version = '5.2.4'; |
| 46 | + private $php_version = '5.6.40'; |
47 | 47 | private $mysqli_version = '5.0';
|
48 | 48 |
|
49 | 49 | private $db_infos = array();
|
@@ -114,9 +114,9 @@ public function test_versions() {
|
114 | 114 | // Test PHP Version
|
115 | 115 | $php_version = phpversion();
|
116 | 116 | if ( version_compare( $php_version, $this->php_version, '>=' ) ) {
|
117 |
| - $this->html_table_row( 'PHP Version', $this->php_version, '> 5.4', $php_version, 'success' ); |
| 117 | + $this->html_table_row( 'PHP Version', $this->php_version, '> 7.3', $php_version, 'success' ); |
118 | 118 | } else {
|
119 |
| - $this->html_table_row( 'PHP Version', $this->php_version, '> 5.4', $php_version, 'error' ); |
| 119 | + $this->html_table_row( 'PHP Version', $this->php_version, '> 7.3', $php_version, 'error' ); |
120 | 120 | }
|
121 | 121 |
|
122 | 122 | // Test MYSQL Client extensions/version.
|
|
0 commit comments