Changeset c857078 in github


Ignore:
Timestamp:
Mar 17, 2009 3:21:48 PM (4 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
082d166
Parents:
c9a2fa9
Message:
  • Fix incorrect row id parsing for LDAP contacts list (#1485784)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r200b162 rc857078  
    22=========================== 
    33 
     4- Fix incorrect row id parsing for LDAP contacts list (#1485784)  
    45- Fix 'mode' parameter in sqlite DSN (#1485772) 
    56 
  • program/js/list.js

    r874717b rc857078  
    105105{ 
    106106  // make references in internal array and set event handlers 
    107   if (row && String(row.id).match(/rcmrow([a-z0-9\-_=]+)/i)) 
     107  if (row && String(row.id).match(/rcmrow([a-z0-9\-_=\+\/]+)/i)) 
    108108  { 
    109109    var p = this; 
     
    356356 
    357357    for(var i=rows.length-1; i>=0; i--) 
    358       if(rows[i].id && String(rows[i].id).match(/rcmrow([a-z0-9\-_=]+)/i) && this.rows[RegExp.$1] != null) 
     358      if(rows[i].id && String(rows[i].id).match(/rcmrow([a-z0-9\-_=\+\/]+)/i) && this.rows[RegExp.$1] != null) 
    359359        return RegExp.$1; 
    360360    } 
Note: See TracChangeset for help on using the changeset viewer.