when trying to get php.ini I get an error on line 277
Status: Alpha
Brought to you by:
mrasnika
when trying to get php.ini I get an error on line 277.
Fixed it by changing line from this:
____________________________________
if (!readable(get_cfg_var('cfg_file_path'))) {
____________________________________
to this:
____________________________________
if (!is_readable(get_cfg_var('cfg_file_path'))) {
____________________________________