Changeset 6130
- Timestamp:
- 06/01/08 09:14:22 (6 months ago)
- Files:
-
- 1 modified
-
trunk/plugins/CL_Moblog/index.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/CL_Moblog/index.php
r6122 r6130 110 110 return true; 111 111 } 112 $this->log( "Msg $number: "._t("메일크기가 작음")." : $size" ); 113 return $size < $this->minsize; 112 $ret = $size < $this->minsize; 113 if( $ret ) { 114 $this->log( "Msg $number: "._t("메일크기가 작음")." : $size" ); 115 } 116 return $ret; 114 117 } 115 118 … … 128 131 129 132 if( !empty($mail['mms']) ) { 130 $this->logMail( $mail, "SKIP, Not an MMS" );131 133 return true; 132 134 } … … 183 185 return false; 184 186 } 185 if( empty($mail['attachments']) ) {187 if( false && empty($mail['attachments']) ) { 186 188 $this->logMail( $mail, "SKIP" ); 187 189 return false; … … 226 228 //unset($post->slogan); 227 229 228 if( count($mail['attachments']) ) {230 if( isset( $mail['attachments'] ) && count($mail['attachments']) ) { 229 231 requireModel( "blog.api" ); 230 232 foreach( $mail['attachments'] as $mail_att ) {
