Skip to content

Commit

Permalink
Merge pull request #452 from Sinager/patch-1
Browse files Browse the repository at this point in the history
Fix SQL query for Marine
  • Loading branch information
Ysurac authored Mar 27, 2020
2 parents 871605e + 74ae226 commit 26dc462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions require/class.Marine.php
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public function getMarineDataByIdent($ident = '', $limit = '', $sort = '', $filt
{
return array();
} else {
$additional_query = " AND marine_output.ident = :ident";
$additional_query = " marine_output.ident = :ident";
$query_values = array(':ident' => $ident);
}
}
Expand Down Expand Up @@ -2814,4 +2814,4 @@ public function getOrderBy()
}

}
?>
?>

0 comments on commit 26dc462

Please sign in to comment.