fixed filepath issue in import request script.

This commit is contained in:
James Richie
2026-05-21 20:43:16 -04:00
parent 8a3cb15e55
commit 3f3900fef6
3 changed files with 116 additions and 356 deletions
+1 -1
View File
@@ -312,7 +312,7 @@ class Import extends Base {
$statement = $this->connect()->prepare($SQL);
$statement->bindValue(":importjob_file_path", "../{$filepath}", PDO::PARAM_STR);
$statement->bindValue(":importjob_file_path", $filepath, PDO::PARAM_STR);
$statement->bindValue(":importjob_notified", false, PDO::PARAM_BOOL);
$statement->bindValue(":importjob_creator", $this->current_user_name, PDO::PARAM_STR);
$statement->bindValue(":importjob_created", $this->getTimestamp());