2023-01-01, 01:17:05
(2022-12-30, 08:23:42)Carlos Wrote:(2022-12-22, 06:39:53)tomkow Wrote: Carlos still not working 'Post options > Select file' and go to any subfolder to pick a picture - no display!
I solved to modify 'filebrowser.php' and put (array) in several places.
Actually it is a bug in GetSimple.
It can be fixed by editing admin/inc/basic.php, and at the end of functionsubval_sort
(around line 200), change:
by:Code:return $c;
}
}
Code:return $c;
} else {
return array();
}
}
Alternatively, if you prefer to patch News Manager with a workaround, edit news_manager/inc/browser/filebrowser.php and change every occurrence of:
subval_sort
by(array)subval_sort
(there are 4).
Thank you!