Added CHtml::refresh().

This commit is contained in:
qiang.xue
2010-03-07 13:26:05 +00:00
parent 33d19a2ce8
commit afdfd98010
3 changed files with 19 additions and 1 deletions

View File

@@ -451,11 +451,11 @@ class CClientScript extends CApplicationComponent
public function registerMetaTag($content,$name=null,$httpEquiv=null,$options=array())
{
$this->_hasScripts=true;
$options['content']=$content;
if($name!==null)
$options['name']=$name;
if($httpEquiv!==null)
$options['http-equiv']=$httpEquiv;
$options['content']=$content;
$this->_metas[serialize($options)]=$options;
$params=func_get_args();
$this->recordCachingAction('clientScript','registerMetaTag',$params);