Google tag

Pages

Dokuwiki parse_ini_file replacement functions

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);
view raw css.php hosted with ❤ by GitHub
Add the  r_parse_ini_file  function , and replace all 3 /lib/exe/css.php  parse_ini_file  to  r_parse_ini_file  !

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  !