Merge via branch

This commit is contained in:
Knah Tsaeb 2014-01-03 09:49:24 +01:00
commit 921e7020c9
1 changed files with 1 additions and 1 deletions

View File

@ -805,7 +805,7 @@ class linkdb implements Iterator, Countable, ArrayAccess
|| (strpos(strtolower($l['description']),$s)!==false)
|| (strpos(strtolower($l['url']),$s)!==false)
|| (strpos(strtolower($l['tags']),$s)!==false)
|| (strpos(strtolower($l['via']),$s)!==false);
|| (!empty($l['via']) && (strpos(strtolower($l['via']),$s)!==false));
if ($found) $filtered[$l['linkdate']] = $l;
}
krsort($filtered);