Browse Source

Fixing a bug with saving data to pivot table

Joe Wallace 12 years ago
parent
commit
d31f89d42f
1 changed files with 1 additions and 11 deletions
  1. 1 11
      laravel/database/eloquent/pivot.php

+ 1 - 11
laravel/database/eloquent/pivot.php

@@ -26,7 +26,7 @@ class Pivot extends Model {
 	public function __construct($table, $connection = null)
 	public function __construct($table, $connection = null)
 	{
 	{
 		$this->pivot_table = $table;
 		$this->pivot_table = $table;
-		$this->connection = $connection;
+		static::$connection = $connection;
 
 
 		parent::__construct(array(), true);
 		parent::__construct(array(), true);
 	}
 	}
@@ -41,14 +41,4 @@ class Pivot extends Model {
 		return $this->pivot_table;
 		return $this->pivot_table;
 	}
 	}
 
 
-	/**
-	 * Get the connection used by the pivot table.
-	 *
-	 * @return string
-	 */
-	public function connection()
-	{
-		return $this->connection;
-	}
-
 }
 }