Changeset 3dd90d3 in github
- Timestamp:
- Sep 5, 2009 2:42:36 AM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 7df0e35
- Parents:
- d9b9369
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
plugins/password/drivers/sql.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r8678ce8 r3dd90d3 2 2 =========================== 3 3 4 - Password Plugin: Fix %d inserts username instead of domain (#1486088) 4 5 - Fix rcube_mdb2::affected_rows() (#1486082) 5 6 -
plugins/password/drivers/sql.php
r64901dd r3dd90d3 6 6 * Driver for passwords stored in SQL database 7 7 * 8 * @version 1. 28 * @version 1.3 9 9 * @author Aleksander 'A.L.E.C' Machniak <alec@alec.pl> 10 10 * … … 82 82 if (count($user_info) >= 2) { 83 83 $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); 85 85 } 86 86
Note: See TracChangeset
for help on using the changeset viewer.
