This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function r_parse_ini_file($ini_file,$bool_section){ | |
$data = file_get_contents($ini_file); | |
$ini_array = parse_ini_string($data,$bool_section); | |
return $ini_array; | |
} | |
//$data = parse_ini_file($ini, true); | |
$data = r_parse_ini_file($ini,true); |
Release 2018-04-22 "Greebo"
- Change to inc/StyleUtils.php
Add the r_parse_ini_file function , and replace all 3 /inc/StyleUtils.php parse_ini_file to $this->r_parse_ini_file !
No comments:
Post a Comment