PHP Code:
if(isset($this->orderBy)){
if(strpos($this->orderBy, "RDER BY") != 1){
$this->orderBy = "ORDER BY " . $this->orderBy;
}
}
PHP Code:
if(isset($this->orderBy)){
if(strpos($this->orderBy, "RDER BY") != 1){
$this->orderBy = "ORDER BY " . $this->orderBy;
}
}else{
// Add a default order by clause, newest to oldest.
$this->orderBy = "ORDER BY link_published_date DESC";
}
David.




Linear Mode

