Commit d6ef2b3f authored by zYne's avatar zYne

removed deprecated attribute from getTable()

parent a8b38b58
......@@ -892,7 +892,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
* @param string $name component name
* @return object Doctrine_Table
*/
public function getTable($name, $allowExport = true)
public function getTable($name)
{
if (isset($this->tables[$name])) {
return $this->tables[$name];
......@@ -905,8 +905,7 @@ abstract class Doctrine_Connection extends Doctrine_Configurable implements Coun
$table = new Doctrine_Table($name, $this);
}
$this->tables[$name] = $table;
$this->tables[$name] = $table;
return $table;
}
......
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