Browse Source

use db manager in validator.

Taylor Otwell 13 years ago
parent
commit
b8e27533bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/validator.php

+ 1 - 1
system/validator.php

@@ -305,7 +305,7 @@ class Validator {
 			$parameters[1] = $attribute;
 		}
 
-		return DB::table($parameters[0])->where($parameters[1], '=', $this->attributes[$attribute])->count() == 0;
+		return DB\Manager::connection()->table($parameters[0])->where($parameters[1], '=', $this->attributes[$attribute])->count() == 0;
 	}
 
 	/**