diff --git a/functions.inc.php b/functions.inc.php index cf8e7a26..6e94c14e 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -2157,22 +2157,6 @@ function gen_show_status($show_alias) { } } - // Expired CHECK - if ( Config::bool('password_expiration') && Config::bool('show_expired') ) { - $now = 'now()'; - if (db_sqlite()) { - $now = "datetime('now')"; - } - - $stat_result = db_query("SELECT * FROM ". $CONF['database_tables']['mailbox'] ." WHERE username = '" . $show_alias . "' AND password_expiry <= $now AND active = '" . db_get_boolean(true) . "'"); - - if ($stat_result['rows'] == 1) { - $stat_string .= "" . $CONF['show_status_text'] . " "; - } else { - $stat_string .= $CONF['show_status_text'] . " "; - } - } - // POP/IMAP CHECK if ($CONF['show_popimap'] == 'YES') { $stat_delimiter = "";