[solved] function.cms_selflink.php implementation question
Posted: Sat Aug 09, 2008 10:06 am
Hi,
Being new to CMSMS, I've been looking through the 1.4 code to get familiar with it. In plugins/function.cms_selflink.php I noticed that line 49 looked "suspicious". Shouldn't it be getting the value of $params['ext_info'] instead of $ext_info or am I missing something?
Thanks,
Fred
Being new to CMSMS, I've been looking through the 1.4 code to get familiar with it. In plugins/function.cms_selflink.php I noticed that line 49 looked "suspicious". Shouldn't it be getting the value of $params['ext_info'] instead of $ext_info or am I missing something?
Code: Select all
$external_text = '(external link)';
if ( isset($params['ext_info']) ) {
$external_text ='( '.$ext_info.' )';
}
Fred