Browse Source

fix bug in routing that prevented comma delimited routes.

Taylor Otwell 13 years ago
parent
commit
6e916ea69d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/routing/router.php

+ 1 - 1
laravel/routing/router.php

@@ -154,7 +154,7 @@ class Router {
 			return (is_string($provides = $callback['provides'])) ? explode('|', $provides) : $provides;
 		}
 
-		return array();
+		return array('html');
 	}
 
 	/**