summaryrefslogtreecommitdiff
path: root/mail/ja-squirrelmail/patches/patch-ab
blob: 8dd097dc2ca2a43e8069f5644dc0b060bb286893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$NetBSD: patch-ab,v 1.1 2005/12/05 09:28:44 martti Exp $

--- class/mime/Rfc822Header.class.php.orig	2005-02-06 19:33:29.000000000 -0500
+++ class/mime/Rfc822Header.class.php
@@ -505,8 +505,9 @@ class Rfc822Header {
      * functions/imap_messages. I'm not sure if it's ok here to call
      * that function?
      */
-    function parsePriority($value) {
-        $value = strtolower(array_shift(split('/\w/',trim($value))));
+    function parsePriority($sValue) {
+	$aValue = split('/\w/',trim($sValue));
+        $value = strtolower(array_shift($aValue));
         if ( is_numeric($value) ) {
             return $value;
         }