mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-06-04 08:59:39 -04:00
Removes PharData check.
This commit is contained in:
parent
8a07a5f9e3
commit
02dd104223
2 changed files with 0 additions and 6 deletions
|
@ -52,10 +52,6 @@ html.no-js( lang="en" )
|
||||||
span.test-label pdf thumbs
|
span.test-label pdf thumbs
|
||||||
span.test-result ?
|
span.test-result ?
|
||||||
div.test-info command 'convert' available
|
div.test-info command 'convert' available
|
||||||
li.test( data-id="archive" )
|
|
||||||
span.test-label php tar and zip
|
|
||||||
span.test-result ?
|
|
||||||
div.test-info PHP Phar extension available
|
|
||||||
li.test( data-id="tar" )
|
li.test( data-id="tar" )
|
||||||
span.test-label shell tar
|
span.test-label shell tar
|
||||||
span.test-result ?
|
span.test-result ?
|
||||||
|
|
|
@ -273,7 +273,6 @@ class App {
|
||||||
public function get_server_checks() {
|
public function get_server_checks() {
|
||||||
|
|
||||||
$php = version_compare(PHP_VERSION, "5.2.1") >= 0;
|
$php = version_compare(PHP_VERSION, "5.2.1") >= 0;
|
||||||
$archive = class_exists("PharData");
|
|
||||||
$gd = false;
|
$gd = false;
|
||||||
if (function_exists("gd_info")) {
|
if (function_exists("gd_info")) {
|
||||||
$gdinfo = gd_info();
|
$gdinfo = gd_info();
|
||||||
|
@ -291,7 +290,6 @@ class App {
|
||||||
"php" => $php,
|
"php" => $php,
|
||||||
"cache" => $cache,
|
"cache" => $cache,
|
||||||
"thumbs" => $gd,
|
"thumbs" => $gd,
|
||||||
"archive" => $archive,
|
|
||||||
"tar" => $tar,
|
"tar" => $tar,
|
||||||
"zip" => $zip,
|
"zip" => $zip,
|
||||||
"convert" => $convert,
|
"convert" => $convert,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue