Revision #3                                    has been created by  qiang                                    on Jul 22, 2009, 3:45:50 PM with the memo:
 qiang                                    on Jul 22, 2009, 3:45:50 PM with the memo:
                                
                                
                                    renamed link() to be l() since link is an internal PHP function.                                
                                                                    « previous (#2)                                                                                                    next (#4) »                                                            
                            Changes
                            
    Title
    unchanged
    Use shortcut functions to reduce typing
    Category
    unchanged
    Tutorials
    Yii version
    unchanged
    
    Tags
    unchanged
    
    Content
    changed
    [...]
}
/**
 * This is the shortcut to CHtml::link()
 */
function link($text, $url = '#', $htmlOptions = array()) 
{
	return CHtml::link($text, $url, $htmlOptions);
}
/**[...]