mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
attachment error checking
This commit is contained in:
parent
69e2257cbb
commit
dbcbefe77a
1 changed files with 15 additions and 4 deletions
|
@ -620,15 +620,26 @@ class Ticket{
|
|||
$ticket->load_With_TId($TId);
|
||||
|
||||
//create the attachment!
|
||||
$dbl = new DBLayer("lib");
|
||||
$dbl->insert("`ticket_attachments`", Array('ticket_TId' => $TId, 'Filename' => $filename, 'Filesize' => filesize($tempFile), 'Uploader' => $author, 'Path' => $randomString . "/" . $filename));
|
||||
try {
|
||||
$dbl = new DBLayer("lib");
|
||||
$dbl->insert("`ticket_attachments`", Array('ticket_TId' => $TId, 'Filename' => $filename, 'Filesize' => filesize($tempFile), 'Uploader' => $author, 'Path' => $randomString . "/" . $filename));
|
||||
}
|
||||
catch (Exception $e) {
|
||||
return $false;
|
||||
}
|
||||
|
||||
|
||||
mkdir($FILE_STORAGE_PATH . $randomString);
|
||||
move_uploaded_file($tempFile,$targetFile);
|
||||
$return = move_uploaded_file($tempFile,$targetFile);
|
||||
|
||||
if ($return == false) {
|
||||
$dbl->delete("`ticket_attachments`", array('Path' => $randomString . "/" . $filename), "`Path` = :Path");
|
||||
}
|
||||
|
||||
//write a log entry
|
||||
Ticket_Log::createLogEntry( $TId, $author, 10);
|
||||
|
||||
return true;
|
||||
return $return;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue