Project

General

Profile

Bug #18874 » 8561_new_42-2.diff

Administrator Admin, 2008-11-22 16:27

View differences:

t3lib/class.t3lib_befunc.php (working copy)
if (!$script) {basename(PATH_thisScript);}
$onClick = 'jumpToUrl(\''.$script.'?'.$mainParams.$addparams.'&'.$elementName.'=\'+(this.checked?1:0),this);';
return '<input type="checkbox" name="'.$elementName.'"'.($currentValue?' checked="checked"':'').' onclick="'.htmlspecialchars($onClick).'"'.($tagParams?' '.$tagParams:'').' />';
return '<input type="checkbox" class="checkbox" name="'.$elementName.'"'.($currentValue?' checked="checked"':'').' onclick="'.htmlspecialchars($onClick).'"'.($tagParams?' '.$tagParams:'').' />';
}
/**
t3lib/class.t3lib_tceforms.php (working copy)
$checkSetValue = gmdate('Y');
}
$cOnClick = 'typo3form.fieldGet('.$paramsList.',1,\''.$checkSetValue.'\');'.implode('',$PA['fieldChangeFunc']);
$item.='<input type="checkbox"'.$this->insertDefStyle('check').' name="'.$PA['itemFormElName'].'_cb" onclick="'.htmlspecialchars($cOnClick).'" />';
$item.='<input type="checkbox" class="' . $this->formElStyleClassValue('check', TRUE) . ' alignToInputText" name="' . $PA['itemFormElName'] . '_cb" onclick="'.htmlspecialchars($cOnClick) . '" />';
}
if ((in_array('date',$evalList) || in_array('datetime',$evalList)) && $PA['itemFormElValue']>0){
// Add server timezone offset to UTC to our stored date
typo3/sysext/beuser/mod/index.php (working copy)
} else {
$menu=array();
foreach ($options as $kk => $vv) {
$menu[]='<input type="checkbox" value="1" name="compareFlags['.$kk.']" id="checkCompare_'.$kk.'"'.($compareFlags[$kk]?' checked="checked"':'').'> <label for="checkCompare_'.$kk.'">'.htmlspecialchars($vv).'</label>';
$menu[]='<input type="checkbox" class="checkbox" value="1" name="compareFlags['.$kk.']" id="checkCompare_'.$kk.'"'.($compareFlags[$kk]?' checked="checked"':'').'> <label for="checkCompare_'.$kk.'">'.htmlspecialchars($vv).'</label>';
}
$outCode = 'Group by:<br />'.implode('<br />',$menu);
$content = $this->doc->section('Group and Compare Users',$outCode,0,1);
typo3/sysext/t3skin/stylesheets/stylesheet_post.css (working copy)
}
.checkbox,
.radio,
.checkbox:hover {
width: 13px;
height: 13px;
overflow: hidden;
vertical-align: middle;
margin-right: 5px;
}
.alignToInputText {
vertical-align: top;
margin-top: 5px;
margin-right: 2px;
}
label {
vertical-align: middle;
}
(7-7/8)