Browse Source

fixed bug in route to controller delegation.

Taylor Otwell 13 years ago
parent
commit
4edcc321aa
2 changed files with 2 additions and 2 deletions
  1. 1 1
      laravel/routing/caller.php
  2. 1 1
      laravel/routing/route.php

+ 1 - 1
laravel/routing/caller.php

@@ -135,7 +135,7 @@ class Caller {
 	 */
 	 */
 	protected function callable($method)
 	protected function callable($method)
 	{
 	{
-		return $method == 'before' or $method == 'after' or strncmp($method, '_', 1) === 0;
+		return $method !== 'before' and $method !== 'after' and strncmp($method, '_', 1) !== 0;
 	}
 	}
 
 
 	/**
 	/**

+ 1 - 1
laravel/routing/route.php

@@ -136,7 +136,7 @@ class Route {
 	 */
 	 */
 	public function delegates()
 	public function delegates()
 	{
 	{
-		return is_array($this->callback) and isset($this->callback['delegate']);
+		return is_string($this->callback) or (is_array($this->callback) and isset($this->callback['delegate']));
 	}
 	}
 
 
 	/**
 	/**