Spectrogram should now work again

This commit is contained in:
ehpersonal38
2022-06-04 10:23:56 -04:00
parent b24d8d9796
commit e55d423a85
+2 -2
View File
@@ -4,7 +4,7 @@ if(isset($_GET['ajax_csv'])) {
$user = shell_exec("awk -F: '/1000/{print $1}' /etc/passwd");
$home = shell_exec("awk -F: '/1000/{print $6}' /etc/passwd");
$home = trim($home);
$files = scandir($home."/BirdSongs/".date('F-Y')."/".date('j-l')."/", SCANDIR_SORT_ASCENDING);
$files = scandir($home."/BirdSongs/".date('F-Y')."/".date('d-l')."/", SCANDIR_SORT_ASCENDING);
$newest_file = $files[2];
@@ -15,7 +15,7 @@ if($newest_file == $_GET['newest_file']) {
echo "file,".$newest_file."\n";
$row = 1;
if (($handle = fopen($home."/BirdSongs/".date('F-Y')."/".date('j-l')."/".$newest_file.".csv", "r")) !== FALSE) {
if (($handle = fopen($home."/BirdSongs/".date('F-Y')."/".date('d-l')."/".$newest_file.".csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
if($row != 1){
$num = count($data);