diff options
author | alecpl <alec@alec.pl> | 2009-03-17 19:21:48 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-03-17 19:21:48 +0000 |
commit | c8570784e93fadac581235bbc9c92b1f6f66f92c (patch) | |
tree | 53e3592bcbf0690a644014f1aa095cabbfc62883 | |
parent | c9a2fa9db0b3cc9edee0b4ee82d02849b5263766 (diff) |
- Fix incorrect row id parsing for LDAP contacts list (#1485784)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/js/list.js | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ CHANGELOG RoundCube Webmail =========================== +- Fix incorrect row id parsing for LDAP contacts list (#1485784) - Fix 'mode' parameter in sqlite DSN (#1485772) RELEASE 0.2.1 diff --git a/program/js/list.js b/program/js/list.js index 8d8f9e965..1fe493ca9 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -104,7 +104,7 @@ init: function() init_row: function(row) { // make references in internal array and set event handlers - if (row && String(row.id).match(/rcmrow([a-z0-9\-_=]+)/i)) + if (row && String(row.id).match(/rcmrow([a-z0-9\-_=\+\/]+)/i)) { var p = this; var uid = RegExp.$1; @@ -355,7 +355,7 @@ get_last_row: function() var rows = this.list.tBodies[0].rows; for(var i=rows.length-1; i>=0; i--) - if(rows[i].id && String(rows[i].id).match(/rcmrow([a-z0-9\-_=]+)/i) && this.rows[RegExp.$1] != null) + if(rows[i].id && String(rows[i].id).match(/rcmrow([a-z0-9\-_=\+\/]+)/i) && this.rows[RegExp.$1] != null) return RegExp.$1; } |