Browse Source

Fix named view data passing.

Taylor Otwell 13 years ago
parent
commit
26bc2379c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/view.php

+ 1 - 1
system/view.php

@@ -261,7 +261,7 @@ class View {
 	{
 	{
 		if (strpos($method, 'of_') === 0)
 		if (strpos($method, 'of_') === 0)
 		{
 		{
-			return static::of(substr($method, 3), $parameters);
+			return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
 		}
 		}
 	}
 	}