Skip to content

Commit

Permalink
Merge pull request #94 from dsenalik/93-tv3-php8-deprecation-warnings
Browse files Browse the repository at this point in the history
Issue 93 $acc parameter no longer optional
  • Loading branch information
laceysanderson committed Jan 7, 2023
2 parents 98c4b2e + 371ec00 commit 10a94fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion api/blast_ui.api.inc
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,10 @@ function sort_blast_jobs_by_date_submitted_desc($a, $b) {
* @returm
* A base64 encoded image representing the hit information.
*/
function generate_blast_hit_image($acc = '', $scores, $hits, $tsize, $qsize, $name, $hit_name) {
function generate_blast_hit_image($acc, $scores, $hits, $tsize, $qsize, $name, $hit_name) {
if (!$acc) {
$acc = '';
}
$tok = strtok($hits, ";");
$b_hits = Array();
while ($tok !== false) {
Expand Down

0 comments on commit 10a94fb

Please sign in to comment.