Remove empty entries

This commit is contained in:
Paul de Rosanbo 2015-02-01 18:03:15 +01:00
parent 9cd174ceab
commit 4b04a77b00
1 changed files with 5 additions and 1 deletions

View File

@ -9,7 +9,7 @@
* @homepage http://www.paruvendu.fr/immobilier/
* @description Returns the N most recent documents.
* @maintainer polo2ro
* @use1(minarea="Min area",maxprice="Max price",pa="Country code",lo="department number")
* @use1(minarea="Min area",maxprice="Max price",pa="Country code",lo="department numbers, comma-separated")
*/
class ParuVenduImmoBridge extends BridgeAbstract
{
@ -44,6 +44,10 @@ class ParuVenduImmoBridge extends BridgeAbstract
foreach($html->find('div.annonce a') as $element) {
if (!$element->title) {
continue;
}
$img ='';
foreach($element->find('span.img img') as $img) {
if ($img->original) {