[UebiMiau] Folders?

Alexanderonline

Verified User
Joined
Mar 14, 2005
Messages
21
Location
Boxmeer, The Netherlands
Hi all,

We've webmail on our DA server, but if I go to "Folders", it don't show any folder (like sent). On the top, there is an error:

Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /var/www/html/webmail/folders.php on line 156

in folders.php:

$umFolderList = array_merge($system, $personal);

in all other files, i can't find $personal.
Is this a know bug, what can i do with it?

I'll hope you have answers for me (and sorry for my bad Englisch)

Greetz,

Alexander
 
bingo. The last I heard there were problems with php5 and this webmail script. Try searching the Updates forums for php5, there might be a solution for it there since I saw threads regarding UebiMiau not working after upgrading.
 
Just in case anybody looks at this thread the fix is:

Replace line 156 in my case with

$umFolderList = array_merge((array)$system, (array)$personal);
 
Back
Top