Browse Source

some small refactoring and bug fixing.

Taylor Otwell 13 years ago
parent
commit
2758b4c16d
4 changed files with 4 additions and 6 deletions
  1. 1 1
      laravel/auth.php
  2. 1 1
      laravel/cookie.php
  3. 1 1
      laravel/form.php
  4. 1 3
      laravel/laravel.php

+ 1 - 1
laravel/auth.php

@@ -192,4 +192,4 @@ class Auth {
 		IoC::core('session')->forget(Auth::user_key);
 	}
 
-}
+}

+ 1 - 1
laravel/cookie.php

@@ -114,7 +114,7 @@ class Cookie {
 	 */
 	protected static function hash($name, $value)
 	{
-		return sha1($name.$value.Config::get('application.key'));
+		return sha1($name.$value.Config::$items['application']['key']);
 	}
 
 	/**

+ 1 - 1
laravel/form.php

@@ -387,7 +387,7 @@ class Form {
 	 */
 	protected static function option($value, $display, $selected)
 	{
-		$selected = ($value === $selected) ? 'selected' : null;
+		$selected = ($value == $selected) ? 'selected' : null;
 
 		$attributes = array('value' => HTML::entities($value), 'selected' => $selected);
 

+ 1 - 3
laravel/laravel.php

@@ -177,15 +177,13 @@ Input::$input = $input;
  */
 Routing\Filter::register(require APP_PATH.'filters'.EXT);
 
-list($uri, $method) = array(Request::uri(), Request::method());
-
 $loader = new Routing\Loader(APP_PATH, ROUTE_PATH);
 
 $router = new Routing\Router($loader, CONTROLLER_PATH);
 
 IoC::instance('laravel.routing.router', $router);
 
-Request::$route = $router->route($method, $uri);
+Request::$route = $router->route(Request::method(), Request::uri());
 
 if ( ! is_null(Request::$route))
 {