4 Commits
4.3 ... 4.3.1

Author SHA1 Message Date
Boris Gulay
f5b4e1035c Bump up version 2020-06-06 23:31:23 +03:00
Boris Gulay
6fa82d6ba5 Fix missing comma 2020-06-06 23:27:58 +03:00
Boris Gulay
fff6c6b95a Update readme 2020-06-01 17:28:54 +03:00
Boris Gulay
92d0f40e3c Add version to composer.json 2020-06-01 17:28:20 +03:00
3 changed files with 3 additions and 2 deletions

View File

@@ -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 1.X (not supported any more) - for Roundcube v1.1
* Versions 2.X (not supported any more) - for Roundcube v1.2 * Versions 2.X (not supported any more) - for Roundcube v1.2
* Versions 3.X (not supported any more) - for Roundcube v1.3 * 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. 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.

View File

@@ -5,6 +5,7 @@
"homepage": "https://bitbucket.org/BoresExpress/ident_switch", "homepage": "https://bitbucket.org/BoresExpress/ident_switch",
"keywords": ["identity", "imap", "mail", "switch"], "keywords": ["identity", "imap", "mail", "switch"],
"license": "GPL-3.0+", "license": "GPL-3.0+",
"version": "4.3.1",
"authors": [ "authors": [
{ {
"name": "Boris Gulay", "name": "Boris Gulay",

View File

@@ -163,7 +163,7 @@ class ident_switch extends rcube_plugin
$rc = rcmail::get_instance(); $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); $q = $rc->db->query($sql, $iid ,$rc->user->ID);
$r = $rc->db->fetch_assoc($q); $r = $rc->db->fetch_assoc($q);
if (is_array($r)) if (is_array($r))