Browse Source

fixed bug in view composers. changed crypter alias.

Taylor Otwell 13 years ago
parent
commit
48715bbb7d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      application/config/aliases.php
  2. 1 1
      laravel/view.php

+ 1 - 1
application/config/aliases.php

@@ -26,7 +26,7 @@ return array(
 	'Config'     => 'Laravel\\Config',
 	'Config'     => 'Laravel\\Config',
 	'Controller' => 'Laravel\\Controller',
 	'Controller' => 'Laravel\\Controller',
 	'Cookie'     => 'Laravel\\Cookie',
 	'Cookie'     => 'Laravel\\Cookie',
-	'Crypter'    => 'Laravel\\Crypter',
+	'Crypter'    => 'Laravel\\Security\\Crypter',
 	'DB'         => 'Laravel\\Database\\Manager',
 	'DB'         => 'Laravel\\Database\\Manager',
 	'Eloquent'   => 'Laravel\\Database\\Eloquent\\Model',
 	'Eloquent'   => 'Laravel\\Database\\Eloquent\\Model',
 	'File'       => 'Laravel\\File',
 	'File'       => 'Laravel\\File',

+ 1 - 1
laravel/view.php

@@ -131,7 +131,7 @@ class View {
 		// could have an array value in which a "name" key exists.
 		// could have an array value in which a "name" key exists.
 		foreach (static::$composers as $key => $value)
 		foreach (static::$composers as $key => $value)
 		{
 		{
-			if ($name === $value or (isset($value['name']) and $name === $value['name'])) { return $key; }
+			if ($name === $value or (is_array($value) and $name === Arr::get($value, 'name'))) return $key;
 		}
 		}
 	}
 	}