Skip to content

Commit

Permalink
Align with new logic
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbelgium authored Nov 25, 2024
1 parent b475255 commit 717702d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/overview.php
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ function display_species($species_list, $title, $show_last_seen=false) {
foreach($species_list as $todaytable):
$iterations++;
$comname = preg_replace('/ /', '_', $todaytable['Com_Name']);
$comnamegraph = preg_replace('/\'/', '__', $comname);
$comname = preg_replace('/\'/', '', $comname);
$comnamegraph = str_replace("'", "\'", $todaytable['Com_Name']);
$filename = "/By_Date/".$todaytable['Date']."/".$comname."/".$todaytable['File_Name'];
$filename_formatted = $todaytable['Date']."/".$comname."/".$todaytable['File_Name'];
$sciname = preg_replace('/ /', '_', $todaytable['Sci_Name']);
Expand Down

0 comments on commit 717702d

Please sign in to comment.