Changeset 13582
- Timestamp:
- 11/22/07 16:43:53 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.helper.datamanager2/type/video.php
r13424 r13582 236 236 debug_push_class(__CLASS__, __FUNCTION__); 237 237 debug_add("image operations require imagefilter which requires ImageMagick, {$convert_cmd} 238 (part of ImageMagick suite) not found or executable", MIDCOM_LOG_ERROR);238 (part of ImageMagick suite) not found or executable", MIDCOM_LOG_ERROR); 239 239 debug_pop(); 240 240 $return = false; … … 627 627 debug_push_class(__CLASS__, __FUNCTION__); 628 628 debug_add("Failed to process the conversion batch 1 (save original & web conversion) for 629 the uploaded file {$filename} in {$tmpname}, aborting type processing.",629 the uploaded file {$filename} in {$tmpname}, aborting type processing.", 630 630 MIDCOM_LOG_ERROR); 631 631 debug_pop(); … … 692 692 $this->_original_tmpname_video = $tmpname; 693 693 $this->_original_mimetype_video = $this->_get_mimetype($this->_original_tmpname_video); 694 694 695 695 // 1st step: original image storage and auto-conversion.. 696 696 if ( ! $this->_save_original_video()) … … 698 698 debug_push_class(__CLASS__, __FUNCTION__); 699 699 debug_add("Failed to save original video {$filename} in" . 700 "{$tmpname}, aborting.", MIDCOM_LOG_ERROR);700 "{$tmpname}, aborting.", MIDCOM_LOG_ERROR); 701 701 debug_pop(); 702 702 … … 916 916 $this->_current_tmpname, 917 917 false); 918 }918 } 919 919 else 920 920 { … … 931 931 $this->_current_tmpname, 932 932 false); 933 }933 } 934 934 } 935 935 @unlink($this->_current_tmpname);
