diff options
author | NETLINK <julianmatz@netlink.ie> | 2012-11-09 05:13:22 +0000 |
---|---|---|
committer | NETLINK <julianmatz@netlink.ie> | 2012-11-09 05:13:22 +0000 |
commit | 204e1e03e9cd6a9007e4fc7ff4202b09dc9ea2b2 (patch) | |
tree | cdeeb1aec91d02e436c213ea6d251da5423ffab7 /plugins/password | |
parent | 7978f872cbd154b169fc9395a3103031f056cf29 (diff) |
Update plugins/password/password.php
Diffstat (limited to 'plugins/password')
-rw-r--r-- | plugins/password/password.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/password/password.php b/plugins/password/password.php index bf7a95f69..320d5d037 100644 --- a/plugins/password/password.php +++ b/plugins/password/password.php @@ -3,7 +3,7 @@ /* +-------------------------------------------------------------------------+ | Password Plugin for Roundcube | - | @version @package_version@ | + | @version @package_version@ | | | | Copyright (C) 2009-2010, Roundcube Dev. | | | @@ -58,7 +58,7 @@ class password extends rcube_plugin $host = isset( $_SESSION['imap_host'] ) ? $_SESSION['imap_host'] : NULL; $hosts = $rcmail->config->get( 'password_supported_hosts' ); - if ( !empty( $hosts ) and !in_array( $host, $hosts ) { + if ( !empty( $hosts ) and !in_array( $host, $hosts ) ) { return; } |