mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-06 11:24:27 +02:00
- bugfix allow uppercase chars in registered resource names
This commit is contained in:
@@ -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}
|
||||
|
||||
|
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user