Changeset 3dd90d3 in github


Ignore:
Timestamp:
Sep 5, 2009 2:42:36 AM (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:
7df0e35
Parents:
d9b9369
Message:
  • Password Plugin: Fix %d inserts username instead of domain (#1486088)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    r8678ce8 r3dd90d3  
    22=========================== 
    33 
     4- Password Plugin: Fix %d inserts username instead of domain (#1486088) 
    45- Fix rcube_mdb2::affected_rows() (#1486082) 
    56 
  • plugins/password/drivers/sql.php

    r64901dd r3dd90d3  
    66 * Driver for passwords stored in SQL database 
    77 * 
    8  * @version 1.2 
     8 * @version 1.3 
    99 * @author Aleksander 'A.L.E.C' Machniak <alec@alec.pl> 
    1010 * 
     
    8282    if (count($user_info) >= 2) { 
    8383        $sql = str_replace('%l', $db->quote($user_info[0], 'text'), $sql); 
    84         $sql = str_replace('%d', $db->quote($user_info[0], 'text'), $sql); 
     84        $sql = str_replace('%d', $db->quote($user_info[1], 'text'), $sql); 
    8585    } 
    8686     
Note: See TracChangeset for help on using the changeset viewer.