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/class/mime/Rfc822Header.class.php (-1 / +2 lines)
Lines 506-512 class Rfc822Header { Link Here
506
     * that function?
506
     * that function?
507
     */
507
     */
508
    function parsePriority($value) {
508
    function parsePriority($value) {
509
        $value = strtolower(array_shift(split('/\w/',trim($value))));
509
        $aValue = split('/\w/',trim($sValue));
510
	$value = strtolower(array_shift($aValue));
510
        if ( is_numeric($value) ) {
511
        if ( is_numeric($value) ) {
511
            return $value;
512
            return $value;
512
        }
513
        }
(-)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