From: kink Date: Thu, 22 May 2003 16:06:29 +0000 (+0000) Subject: All calls to this function were removed a while ago; remove the function X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=6f736941c193b48faf892fbdd0e0343034b2d5b0;p=squirrelmail.git All calls to this function were removed a while ago; remove the function itself too. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4890 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/plugins/mail_fetch/class.POP3.php b/plugins/mail_fetch/class.POP3.php index 1edd8763..9b1883ff 100644 --- a/plugins/mail_fetch/class.POP3.php +++ b/plugins/mail_fetch/class.POP3.php @@ -106,18 +106,6 @@ class POP3 { return true; } - function noop () { - - if(!isset($this->FP)) { - $this->ERROR = _("POP3 noop:") . ' ' . _("No connection to server"); - return false; - } else { - $cmd = "NOOP"; - $reply = $this->send_cmd( $cmd ); - return( $this->is_ok( $reply ) ); - } - } - function user ($user = "") { // Sends the USER command, returns true or false