Skip to content
Snippets Groups Projects
Commit 64c65621 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Merge branch 'Bugfix' into 'master'

Bugfix



See merge request !119
parents 3072e39f a3ed895c
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
...@@ -106,6 +106,8 @@ class Result ...@@ -106,6 +106,8 @@ class Result
#die($tmpEingabe); #die($tmpEingabe);
foreach(explode(" ", trim($tmpEingabe)) as $el) foreach(explode(" ", trim($tmpEingabe)) as $el)
{ {
if( strlen($tmpTitle) === 0 || strlen($el) === 0 || strlen($tmpDescription) === 0 )
continue;
$el = preg_quote($el, "/"); $el = preg_quote($el, "/");
if(strlen($tmpTitle) > 0) if(strlen($tmpTitle) > 0)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment