Commit 0a58490a authored by zYne's avatar zYne

--no commit message

--no commit message
parent 3b48b791
...@@ -748,7 +748,6 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite ...@@ -748,7 +748,6 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
*/ */
public function get($name, $invoke = true) public function get($name, $invoke = true)
{ {
$listener = $this->_table->getAttribute(Doctrine::ATTR_LISTENER);
$value = self::$null; $value = self::$null;
$lower = strtolower($name); $lower = strtolower($name);
...@@ -787,7 +786,6 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite ...@@ -787,7 +786,6 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite
if (isset($this->_values[$lower])) { if (isset($this->_values[$lower])) {
return $this->_values[$lower]; return $this->_values[$lower];
} }
$rel = $this->_table->getRelation($name);
try { try {
if ( ! isset($this->references[$name])) { if ( ! isset($this->references[$name])) {
......
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