Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f5b4e1035c | ||
|
|
6fa82d6ba5 | ||
|
|
fff6c6b95a | ||
|
|
92d0f40e3c |
@@ -32,6 +32,6 @@ This plugin allows users to switch between different accounts (including remote)
|
||||
* Versions 1.X (not supported any more) - for Roundcube v1.1
|
||||
* Versions 2.X (not supported any more) - for Roundcube v1.2
|
||||
* Versions 3.X (not supported any more) - for Roundcube v1.3
|
||||
* Versions 4.x - for Roundcube v1.3 and upcoming 1.4.
|
||||
* Versions 4.x - for Roundcube v1.3 and 1.4.
|
||||
|
||||
Please specify version like "~2.0" in your composer.json file for ident_switch requirement. In this case you will stay inside compatible branch until you manually update your Roundcube installation.
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
"homepage": "https://bitbucket.org/BoresExpress/ident_switch",
|
||||
"keywords": ["identity", "imap", "mail", "switch"],
|
||||
"license": "GPL-3.0+",
|
||||
"version": "4.3.1",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Boris Gulay",
|
||||
|
||||
@@ -163,7 +163,7 @@ class ident_switch extends rcube_plugin
|
||||
|
||||
$rc = rcmail::get_instance();
|
||||
|
||||
$sql = 'SELECT smtp_host, flags, smtp_port, username, smtp_auth password FROM ' . $rc->db->table_name(self::TABLE) . ' WHERE iid = ? AND user_id = ?';
|
||||
$sql = 'SELECT smtp_host, flags, smtp_port, username, smtp_auth, password FROM ' . $rc->db->table_name(self::TABLE) . ' WHERE iid = ? AND user_id = ?';
|
||||
$q = $rc->db->query($sql, $iid ,$rc->user->ID);
|
||||
$r = $rc->db->fetch_assoc($q);
|
||||
if (is_array($r))
|
||||
|
||||
Reference in New Issue
Block a user