cmax wasn't defaulting correctly

This commit is contained in:
friendica 2013-12-11 19:56:57 -08:00
parent b4e1e8a4a4
commit 18f0ab2605

View File

@ -341,10 +341,13 @@ function widget_affinity($arr) {
if(! local_user()) if(! local_user())
return ''; return '';
$cmin = ((x($_REQUEST,'cmin')) ? intval($_REQUEST['cmin']) : 0);
$cmax = ((x($_REQUEST,'cmax')) ? intval($_REQUEST['cmax']) : 99);
if(feature_enabled(local_user(),'affinity')) { if(feature_enabled(local_user(),'affinity')) {
$tpl = get_markup_template('main_slider.tpl'); $tpl = get_markup_template('main_slider.tpl');
$x = replace_macros($tpl,array( $x = replace_macros($tpl,array(
'$val' => intval($_REQUEST['cmin']) . ';' . intval($_REQUEST['cmax']), '$val' => $cmin . ';' . $cmax,
'$refresh' => t('Refresh'), '$refresh' => t('Refresh'),
'$me' => t('Me'), '$me' => t('Me'),
'$intimate' => t('Best Friends'), '$intimate' => t('Best Friends'),