Commit 2c88ffb9 authored by Yuan Xie's avatar Yuan Xie

Should be updating $this->_keywords.

parent d46cc599
...@@ -2690,8 +2690,8 @@ abstract class AbstractPlatform ...@@ -2690,8 +2690,8 @@ abstract class AbstractPlatform
final public function getReservedKeywordsList() final public function getReservedKeywordsList()
{ {
// Check for an existing instantiation of the keywords class. // Check for an existing instantiation of the keywords class.
if ($this->keywords) { if ($this->_keywords) {
return $this->keywords; return $this->_keywords;
} }
$class = $this->getReservedKeywordsClass(); $class = $this->getReservedKeywordsClass();
...@@ -2701,7 +2701,7 @@ abstract class AbstractPlatform ...@@ -2701,7 +2701,7 @@ abstract class AbstractPlatform
} }
// Store the instance so it doesn't need to be generated on every request. // Store the instance so it doesn't need to be generated on every request.
$this->keywords = $keywords; $this->_keywords = $keywords;
return $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