Summary:
Does not work with CGExtensions v1.65.2
Detailed Description:
Does not work with CGExtensions v1.65.2
Possible bug in CGE, but the following in CGE fixes it
public function CGGetPreference($pref_name,$dflt_value = null,$allow_empty =
FALSE)
{
$tmp = $this->GetPreference($pref_name,$dflt_value);
if (!empty($tmp)) $tmp = trim($tmp);
if( !empty($tmp) || is_numeric($tmp) ) return $tmp;
if( $allow_empty ) return $tmp;
return $dflt_value;
}
CGExtensions.module.php, lines: 1681-1687