Changeset 6a61686 in github


Ignore:
Timestamp:
Nov 25, 2011 1:50:05 PM (18 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
3e5c709
Parents:
e0960f6
Message:
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    re0960f6 r6a61686  
    22=========================== 
    33 
     4- Fix handling contact photo url with https:// prefix (#1488202) 
    45- Prevent from memory_limit exceeding when trying to parse big messages bodies (#1487424) 
    56- Add possibility to add SASL mechanisms for SMTP in smtp_connect hook (#1487937) 
  • program/steps/addressbook/func.inc

    r77153b2 r6a61686  
    711711    unset($attrib['placeholder']); 
    712712 
    713     if (strpos($record['photo'], 'http:') === 0) 
     713    if (preg_match('!^https?://!i', $record['photo'])) 
    714714        $photo_img = $record['photo']; 
    715715    else if ($record['photo']) 
Note: See TracChangeset for help on using the changeset viewer.