Mark Croxton - 23 June 2012 03:39 AM
This may help explain the problem with back ticks:
https://gist.github.com/2923657
Thanks for bringing this issue to my attention, here’s what I did :
Edit file ‘system/database/DB_active_rec.php’
Modify function ‘join’, add a fourth parameter ‘$escape_cond’ which will skip the condition identifiers protection when set to FALSE
public function join($table, $cond, $type = '', $escape_cond = TRUE)
{
if ($type != '')
{
$type = strtoupper(trim($type));
if ( ! in_array($type, array('LEFT', 'RIGHT', 'OUTER', 'INNER', 'LEFT OUTER', 'RIGHT OUTER')))
{
$type = '';
}
else
{
$type .= ' ';
}
}
// Extract any aliases that might exist. We use this information
// in the _protect_identifiers to know whether to add a table prefix
$this->_track_aliases($table);
// Strip apart the condition and protect the identifiers
if ($escape_cond)
{
if (preg_match('/([\w\.]+)([\W\s]+)(.+)/', $cond, $match))
{
$match[1] = $this->_protect_identifiers($match[1]);
$match[3] = $this->_protect_identifiers($match[3]);
$cond = $match[1].$match[2].$match[3];
}
}
// Assemble the JOIN statement
$join = $type.'JOIN '.$this->_protect_identifiers($table, TRUE, NULL, FALSE).' ON '.$cond;
$this->ar_join[] = $join;
if ($this->ar_caching === TRUE)
{
$this->ar_cache_join[] = $join;
$this->ar_cache_exists[] = 'join';
}
return $this;
}
And join like this :
$this->db->join(t$able, $condition, '', FALSE);
None of my other joins are impacted.