From 0a58490a1fbf6f15d60d03657d3d8a73e9620df2 Mon Sep 17 00:00:00 2001 From: zYne Date: Tue, 1 May 2007 19:26:03 +0000 Subject: [PATCH] --- lib/Doctrine/Record.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Doctrine/Record.php b/lib/Doctrine/Record.php index 87faf1bca..b1ae14a4a 100644 --- a/lib/Doctrine/Record.php +++ b/lib/Doctrine/Record.php @@ -748,7 +748,6 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite */ public function get($name, $invoke = true) { - $listener = $this->_table->getAttribute(Doctrine::ATTR_LISTENER); $value = self::$null; $lower = strtolower($name); @@ -787,7 +786,6 @@ abstract class Doctrine_Record extends Doctrine_Access implements Countable, Ite if (isset($this->_values[$lower])) { return $this->_values[$lower]; } - $rel = $this->_table->getRelation($name); try { if ( ! isset($this->references[$name])) {