fixed filepath issue in import request script.
This commit is contained in:
+1
-1
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user