From 6ef9016020a593007c12b1a229882a2a80eaae0f Mon Sep 17 00:00:00 2001 From: ehpersonal38 <103586016+ehpersonal38@users.noreply.github.com> Date: Thu, 23 Jun 2022 09:11:34 -0400 Subject: [PATCH] Update config.php --- scripts/config.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/config.php b/scripts/config.php index fe0cd64..8d185c1 100644 --- a/scripts/config.php +++ b/scripts/config.php @@ -150,10 +150,9 @@ if(isset($_GET['sendtest']) && $_GET['sendtest'] == "true") { $result0 = $statement0->execute(); while($todaytable=$result0->fetchArray(SQLITE3_ASSOC)) { - $comname = preg_replace('/ /', '_', $todaytable['Com_Name']); - $comname = preg_replace('/\'/', '_', $comname); + $comname = $todaytable['Com_Name']; $filename = $todaytable['File_Name']; - $sciname = preg_replace('/ /', '_', $todaytable['Sci_Name']); + $sciname = $todaytable['Sci_Name']; $confidence = $todaytable["Confidence"]; }