Merge branch 'main' of github.com:mcguirepr89/BirdNET-Pi
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user