Skip to content

Commit

Permalink
Fix short var name for scrutinizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Oct 15, 2014
1 parent d422dd9 commit 09d40c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions class.smtp.php
Expand Up @@ -608,10 +608,10 @@ public function data($msg_data)
//Increase timelimit for end of DATA command
$savetimelimit = $this->Timelimit;
$this->Timelimit = $this->Timelimit * 2;
$r = $this->sendCommand('DATA END', '.', 250);
$result = $this->sendCommand('DATA END', '.', 250);
//Restore timelimit
$this->Timelimit = $savetimelimit;
return $r;
return $result;
}

/**
Expand Down

0 comments on commit 09d40c4

Please sign in to comment.