Skip to content

Commit

Permalink
Fixed pathinfo check
Browse files Browse the repository at this point in the history
  • Loading branch information
GodMod committed May 17, 2018
1 parent 73d5912 commit ce75de6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions install/install_steps/php_check.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,19 +104,19 @@ private function getCheckParams(){
'adviced_fail' => (!function_exists('mb_strtolower')) ? true : false,
'ignore' => true
),
//Check will be performed by javascript
'pathinfo' => array(
'required' => $this->lang['yes'],
'installed' => $this->lang['yes'],
'passfail' => true
),
'externalconnection' => array(
'required' => $this->lang['yes'],
'installed' => ($this->check_external_connection()) ? $this->lang['yes']: $this->lang['no'],
'ignore' => true,
'passfail' => true,
'adviced_fail' => (!$this->check_external_connection()),
)
),
//Check will be performed by javascript; fixed to last row in javascript
'pathinfo' => array(
'required' => $this->lang['yes'],
'installed' => $this->lang['yes'],
'passfail' => true
),
);
}

Expand Down

0 comments on commit ce75de6

Please sign in to comment.