mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 05:43:41 +00:00
Merge pull request #71 from CyberDomovoy/nsfw_showmore
return 0 from get_body_length before loading the body to DomDocument if body is empty
This commit is contained in:
commit
fc3329e956
1 changed files with 5 additions and 0 deletions
|
@ -69,6 +69,11 @@ function showmore_addon_settings_post(&$a,&$b) {
|
||||||
function get_body_length($body) {
|
function get_body_length($body) {
|
||||||
$string = trim($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)
|
// 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
|
// Get rid of the warning. It would be better to have some valid html as input
|
||||||
|
|
Loading…
Reference in a new issue