*** /Users/linusneumann/Downloads/flattr/flattr.php 2010-06-10 08:07:22.000000000 +0200 --- ./flattr.php 2010-08-04 13:41:00.000000000 +0200 *************** *** 236,241 **** --- 236,247 ---- $excerpt = substr($excerpt, 0, $excerpt_max_length); } + // If excerpt can not be created because there is no text content + if (strlen($excerpt) < 10) + { + $excerpt = "This post ist textless."; + } + return $excerpt; }