Browse Source

fixed module composer view when using named views.

Taylor Otwell 13 years ago
parent
commit
ab02e46490
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/view.php

+ 2 - 0
system/view.php

@@ -86,6 +86,8 @@ class View {
 			{
 				if ($name === $value or (isset($value['name']) and $name === $value['name']))
 				{
+					$key = ($module !== 'application') ? $module.'::'.$key : $key;
+
 					return new static($key, $data);
 				}
 			}