Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 108394 | Differences between
and this patch

Collapse All | Expand All

(-)old/squirrelmail/functions/imap_messages.php (-1 / +2 lines)
Lines 477-483 function parseArray($read,&$i) { Link Here
477
 * class/mime/Rfc822Header.php.
477
 * class/mime/Rfc822Header.php.
478
 */
478
 */
479
function parsePriority($value) {
479
function parsePriority($value) {
480
    $value = strtolower(array_shift(split('/\w/',trim($value))));
480
    $aValue=split('/\w/',trim($sValue));
481
    $value = strtolower(array_shift($aValue));
481
    if ( is_numeric($value) ) {
482
    if ( is_numeric($value) ) {
482
        return $value;
483
        return $value;
483
    }
484
    }

Return to bug 108394