From f277a3a60f28403fc27de646827603dc1c9e569b Mon Sep 17 00:00:00 2001 From: thomasb Date: Sat, 20 Feb 2010 17:38:12 +0000 Subject: Another PHP 5.3 compatibility fix (similar to r2591) git-svn-id: https://svn.roundcube.net/trunk@3276 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/lib/mime.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/lib/mime.inc b/roundcubemail/program/lib/mime.inc index 860edbff2..cb4f7285d 100644 --- a/roundcubemail/program/lib/mime.inc +++ b/roundcubemail/program/lib/mime.inc @@ -111,7 +111,7 @@ function iml_GetPartArray($a, $part){ //echo "m - part: $original_part current: $part rest: $rest array: ".implode(" ", $a)."
\n"; return iml_GetPartArray($a[$part-1], $rest); }else if ($part>0){ - if ((strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ + if (!is_array($a[0]) && (strcasecmp($a[0], "message")==0) && (strcasecmp($a[1], "rfc822")==0)){ $a = $a[8]; } //echo "s - part: $part rest: $rest array: ".implode(" ", $a)."
\n"; -- cgit v1.2.3