Quick Search:

Mode

Context

Displaying 3 lines of context. None | Less | More | Full

Other Diffs

Ignore

Blank Lines Whitespace:

Diff

757
 
883
 
883
 
search.php
_> 195195 
  196196       if ($this->hasDateSet('from')) {
  197197         $Qlisting->appendQuery('and p.products_date_added >= :products_date_added');
<> 198 -        $Qlisting->bindValue(':products_date_added', date('Ymd', $this->_date_from));
   198+        $Qlisting->bindValue(':products_date_added', date('Y-m-d H:i:s', $this->_date_from));
199199       }
  200200 
  201201       if ($this->hasDateSet('to')) {
  202202         $Qlisting->appendQuery('and p.products_date_added <= :products_date_added');
<> 203 -        $Qlisting->bindValue(':products_date_added', date('Ymd', $this->_date_to));
   203+        $Qlisting->bindValue(':products_date_added', date('Y-m-d H:i:s', $this->_date_to));
<_ 204204       }
  205205 
  206206       if ($this->hasPriceSet('from')) {