function _pagename2filename in backend/file.php seems to be taking sometimes a string as $pagename, sometimes an array.
I have added this line at the beginning of the function to get rid of the annoying Warnings:
if (is_array($pagename) && isset($pagename['linkto'])) $pagename=$pagename['linkto'];
Logged In: YES
user_id=13755
Originator: NO
Interesting, thanks! I try to find the real culprit. It didn't appear in the unittests.