- bugfix allow uppercase chars in registered resource names

This commit is contained in:
Uwe.Tews
2010-03-04 15:49:48 +00:00
parent 5d9f7ab65b
commit a2a7942cea
2 changed files with 4 additions and 8 deletions

View File

@@ -1,3 +1,6 @@
04/03/2010
- bugfix allow uppercase chars in registered resource names
01/03/2010
- bugfix on nocache code in {block} tags if child template was included by {include}

View File

@@ -665,7 +665,7 @@ class Smarty_Internal_Template extends Smarty_Internal_Data {
$resource_type = 'file';
$resource_name = $template_resource;
} else {
$resource_type = strtolower($resource_type);
$resource_type = $resource_type;
}
}
}
@@ -802,13 +802,6 @@ class Smarty_Internal_Template extends Smarty_Internal_Data {
{
return $this->smarty->fetch($this);
}
/**
* wrapper for is_cached
*/
public function is_cached ()
{
return $this->iscached($this);
}
}
/**