Browse Source

fixed bug in redis class.

Taylor Otwell 13 years ago
parent
commit
0a2587d291
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/redis.php

+ 1 - 1
laravel/redis.php

@@ -61,7 +61,7 @@ class Redis {
 	 */
 	public static function db($name = 'default')
 	{
-		if (is_null(static::$databases[$name]))
+		if ( ! isset(static::$databases[$name]))
 		{
 			if (is_null($config = Config::get("database.redis.{$name}")))
 			{