Ticket #427: Database.php.patch

File Database.php.patch, 457 bytes (added by allain, 11 months ago)
  • Database.php

     
    813813                        } 
    814814                        $values = implode(",", $escaped_values); 
    815815                } 
    816                 $this->where($this->driver->escape_column($field).' '.($not) ? 'NOT ' : ''.'IN ('.$values.')'); 
     816                $this->where($this->driver->escape_column($field).' '.(($not) ? 'NOT ' : '').'IN ('.$values.')'); 
    817817 
    818818                return $this; 
    819819        }