Home
last modified time | relevance | path

Searched refs:attachment_id (Results 1 – 2 of 2) sorted by relevance

/plugin/issuetracker/
H A Dsyntax.php1733 function _symptom_file_upload(&$issues, $issue_id, $attachment_id) { argument
1802 $mime_type = $_FILES[$attachment_id]['type'];
1803 …$file_extension = strrchr($_FILES[$attachment_id]['name'],'.'); // last occurance of dot to detect…
1811 …$Generated_Header .= '<span>'.$this->getLang('wmsg7').' (File: <b>'.$_FILES[$attachment_id]['name'…
1816 …$Generated_Header .= '<span>'.$this->getLang('wmsg8').' (File: <b>'.$_FILES[$attachment_id]['name'…
1819 if($_FILES[$attachment_id]['size'] > ($this->getConf('max_fsize'))){
1821 …getLang('wmsg6'), $this->getConf('max_fsize')).' (File: <b>'.$_FILES[$attachment_id]['name'].'</b>…
1830 …$safe_filename = preg_replace('#[^A-Za-z0-9_.-]#', '',trim(basename( $_FILES[$attachment_id]['name…
1832 if(move_uploaded_file($_FILES[$attachment_id]['tmp_name'], DOKU_INC.$target_path)) {
H A Daction.php3511 function _symptom_file_upload(&$issues, $issue_id, $attachment_id) { argument
3580 $mime_type = $_FILES[$attachment_id]['type'];
3581 …$file_extension = strrchr($_FILES[$attachment_id]['name'],'.'); // last occurance of dot to detect…
3589 …$Generated_Header .= '<span>'.$this->getLang('wmsg7').' (File: <b>'.$_FILES[$attachment_id]['name'…
3594 …$Generated_Header .= '<span>'.$this->getLang('wmsg8').' (File: <b>'.$_FILES[$attachment_id]['name'…
3597 if($_FILES[$attachment_id]['size'] > ($this->getConf('max_fsize'))){
3599 …getLang('wmsg6'), $this->getConf('max_fsize')).' (File: <b>'.$_FILES[$attachment_id]['name'].'</b>…
3608 …$safe_filename = preg_replace('#[^A-Za-z0-9_.-]#', '',trim(basename( $_FILES[$attachment_id]['name…
3610 if(move_uploaded_file($_FILES[$attachment_id]['tmp_name'], DOKU_INC.$target_path)) {
3612 $issues[$issue_id][$attachment_id] = DOKU_URL.$target_path;