Commit 2cac730b authored by Guilherme Blanco's avatar Guilherme Blanco

Merge pull request #161 from whiterv/patch-1

Should be updating $this->_keywords.
parents d46cc599 2c88ffb9
......@@ -2690,8 +2690,8 @@ abstract class AbstractPlatform
final public function getReservedKeywordsList()
{
// Check for an existing instantiation of the keywords class.
if ($this->keywords) {
return $this->keywords;
if ($this->_keywords) {
return $this->_keywords;
}
$class = $this->getReservedKeywordsClass();
......@@ -2701,7 +2701,7 @@ abstract class AbstractPlatform
}
// Store the instance so it doesn't need to be generated on every request.
$this->keywords = $keywords;
$this->_keywords = $keywords;
return $keywords;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment