diff options
| author | Aleksander Machniak <alec@alec.pl> | 2014-09-22 09:31:11 +0200 | 
|---|---|---|
| committer | Aleksander Machniak <alec@alec.pl> | 2014-09-22 09:31:11 +0200 | 
| commit | ff767a14ff7675fce7b23b918f41fa92157dd0c0 (patch) | |
| tree | f7a1ed9a6c7d5ec02e967278ff6301019258ead5 /plugins | |
| parent | 13bbcd0f59ef7a4459a6909079f0a558913e808a (diff) | |
| parent | abc00f27c5d923a02c946a634e158dfe9f20974e (diff) | |
Merge branch 'oracle'
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/squirrelmail_usercopy/squirrelmail_usercopy.php | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php index e882a2f37..7f378678e 100644 --- a/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php +++ b/plugins/squirrelmail_usercopy/squirrelmail_usercopy.php @@ -164,14 +164,16 @@ class squirrelmail_usercopy extends rcube_plugin  			if ($db_charset)  				$db->query('SET NAMES '.$db_charset); -			$sql_result = $db->query('SELECT * FROM '.$userprefs_table.' WHERE user=?', $uname); // ? is replaced with emailaddress +			$sql_result = $db->query('SELECT * FROM ' . $db->quote_identifier($userprefs_table) +			    .' WHERE `user` = ?', $uname); // ? is replaced with emailaddress  			while ($sql_array = $db->fetch_assoc($sql_result) ) { // fetch one row from result  				$this->prefs[$sql_array['prefkey']] = rcube_charset::convert(rtrim($sql_array['prefval']), $db_charset);  			}  			/* retrieve address table data */ -			$sql_result = $db->query('SELECT * FROM '.$address_table.' WHERE owner=?', $uname); // ? is replaced with emailaddress +			$sql_result = $db->query('SELECT * FROM ' . $db->quote_identifier($address_table) +			    .' WHERE `owner` = ?', $uname); // ? is replaced with emailaddress  			// parse addres book  			while ($sql_array = $db->fetch_assoc($sql_result) ) { // fetch one row from result @@ -186,5 +188,4 @@ class squirrelmail_usercopy extends rcube_plugin  			}  		} // end if 'sql'-driver  	} -  } | 
