Changeset 5969
- Timestamp:
- 05/18/08 16:26:58 (6 months ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
components/Needlworks.Mail.Pop3.php (modified) (1 diff)
-
plugins/CL_Moblog/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/Needlworks.Mail.Pop3.php
r5965 r5969 373 373 } 374 374 $mail['length'] = strlen($mail['decoded_content']); 375 if( substr($mail['content_type'],0,4) == 'text' ) {375 if( isset($mail['content_type']) && substr($mail['content_type'],0,4) == 'text' ) { 376 376 $mail['text_type'] = $mail['content_type']; 377 377 $mail['text'] = $mail['decoded_content']; -
trunk/plugins/CL_Moblog/index.php
r5968 r5969 146 146 $mail = $this->pop3->parse( $lines ); 147 147 if( in_array( $mail['subject'], array( '제목없음' ) ) ) { 148 $mail['subject'] = $ docid;148 $mail['subject'] = $slogan; 149 149 } 150 150 if( !$this->isMms($mail) ) { … … 166 166 $post->title = $mail['subject']; 167 167 $post->userid = $this->userid; 168 $post->content = $this->_getDecoratedContent( $mail );168 $post->content = $this->_getDecoratedContent( $mail, $docid ); 169 169 $post->contentFormatter = getDefaultFormatter(); 170 170 $post->contentEditor = getDefaultEditor();
