CloneSet110


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
10810.974statement_block
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
110151
libraries/phpmailer/smtp.php
210169
libraries/phpmailer/smtp.php
310187
libraries/phpmailer/smtp.php
410375
libraries/phpmailer/smtp.php
510498
libraries/phpmailer/smtp.php
610553
libraries/phpmailer/smtp.php
710739
libraries/phpmailer/smtp.php
810995
libraries/phpmailer/smtp.php
Clone Instance
1
Line Count
10
Source Line
151
Source File
libraries/phpmailer/smtp.php

                          {
            $this->error =
                array( "error" => "AUTH not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
2
Line Count
10
Source Line
169
Source File
libraries/phpmailer/smtp.php

                          {
            $this->error =
                array( "error" => "Username not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
3
Line Count
10
Source Line
187
Source File
libraries/phpmailer/smtp.php

                          {
            $this->error =
                array( "error" => "Password not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
4
Line Count
10
Source Line
375
Source File
libraries/phpmailer/smtp.php

                          {
            $this->error =
                array( "error" => "DATA not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
5
Line Count
10
Source Line
498
Source File
libraries/phpmailer/smtp.php

                          {
            $this->error =
                array( "error" => $hello
                                  .        " not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
6
Line Count
10
Source Line
553
Source File
libraries/phpmailer/smtp.php

                                          {
            $this->error =
                array( "error" => "HELP not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
7
Line Count
10
Source Line
739
Source File
libraries/phpmailer/smtp.php

                                          {
            $this->error =
                array( "error" => "RCPT not accepted from server",
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone Instance
8
Line Count
10
Source Line
995
Source File
libraries/phpmailer/smtp.php

                                          {
            $this->error =
                array( "error" => "VRFY failed on name '$name'" ,
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
            if ($this->do_debug >= 1) {
                echo "SMTP -> ERROR: "
                     .                   $this->error["error"]
                     .   ": "
                     .          $rply
                     .                  $this->CRLF;
              }
            return FALSE;
          }


Clone AbstractionParameter Count: 1Parameter Bindings

{
  $this->error =array( "error" => [[#variable4605e140]],
                       "smtp_code" => $code,
                       "smtp_msg" => substr($rply,4)
                     );
  if ($this->do_debug >=1) {
    echo "SMTP -> ERROR: "
         . $this->error["error"]
         . ": "
         . $rply
         . $this->CRLF;
  }
  return FALSE;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#4605e140]]
"AUTH not accepted from server" 
12[[#4605e140]]
"Username not accepted from server" 
13[[#4605e140]]
"Password not accepted from server" 
14[[#4605e140]]
"VRFY failed on name '$name'" 
15[[#4605e140]]
"DATA not accepted from server" 
16[[#4605e140]]
"RCPT not accepted from server" 
17[[#4605e140]]
$hello
. " not accepted from server" 
18[[#4605e140]]
"HELP not accepted from server"