This commit is contained in:
Domovoy 2012-07-27 01:12:54 -07:00
commit c6b0d3027c

View file

@ -69,6 +69,11 @@ function showmore_addon_settings_post(&$a,&$b) {
function get_body_length($body) {
$string = trim($body);
// DomDocument doesn't like empty strings
if(! strlen($string)) {
return 0;
}
// We need to get rid of hidden tags (display: none)
// Get rid of the warning. It would be better to have some valid html as input