Google tag

Pages

RAD Studio 10.2 + Python4Delphi

if you find this error while compile your exe,
[dcc32 Error] VarPyth.pas(185): E2037 Declaration of 'DispInvoke' differs from previous declaration

procedure DispInvoke(Dest: PVarData; const Source: TVarData;
      CallDesc: PCallDesc; Params: Pointer); override;

change to

procedure DispInvoke(Dest: PVarData; const Source: TVarData;
      CallDesc: PCallDesc; Params: Pointer); overload;

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  !