Bug #18874 » 8561_new.diff
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) | ||
---|---|---|
$menu[$columnCounter] = array();
|
||
}
|
||
$rowCounter++;
|
||
$menu[$columnCounter][]='<input type="checkbox" value="1" name="compareFlags['.$kk.']" id="checkCompare_'.$kk.'"'.($compareFlags[$kk]?' checked="checked"':'').'> <label for="checkCompare_'.$kk.'">'.htmlspecialchars($vv).'</label>';
|
||
$menu[$columnCounter][]='<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 = '<p>' . $GLOBALS['LANG']->getLL('groupBy', true) . '</p>';
|
||
$outCode .= '<table border="0" cellpadding="3" cellspacing="1" class="compare-checklist valign-top"><tr>';
|
typo3/sysext/t3skin/stylesheets/stylesheet_post.css (working copy) | ||
---|---|---|
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;
|
||
}
|