Project

General

Profile

Bug #23763 ยป 16028.diff

Administrator Admin, 2011-01-14 15:54

View differences:

typo3/sysext/cms/tbl_tt_content.php (revision )
'size' => '13',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
),
),
......
'size' => '13',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
'range' => array(
'upper' => mktime(0,0,0,12,31,2020),
......
'size' => '13',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
),
),
......
'type' => 'input',
'size' => '50',
'max' => '256',
'checkbox' => '',
),
),
'header_position' => array(
......
'type' => 'input',
'size' => '50',
'max' => '256',
'checkbox' => '',
'eval' => 'trim',
'wizards' => array(
'_PADDING' => 2,
......
'size' => '50',
'max' => '256',
'softref' => 'email[subst]',
'checkbox' => '',
),
),
'bodytext' => array(
......
'size' => '4',
'max' => '4',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'upper' => '999',
'lower' => '25',
......
'size' => '4',
'max' => '4',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'upper' => '700',
'lower' => '25',
......
'type' => 'input',
'size' => '50',
'max' => '51200',
'checkbox' => '',
'eval' => 'trim',
'wizards' => array(
'_PADDING' => 2,
......
'size' => '3',
'max' => '3',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'upper' => '20',
'lower' => '0',
......
'size' => '3',
'max' => '3',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'upper' => '200',
'lower' => '0',
......
'size' => '3',
'max' => '3',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'upper' => '200',
'lower' => '0',
......
'size' => '5',
'max' => '5',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'lower' => '0',
),
......
'size' => '5',
'max' => '5',
'eval' => 'int',
'checkbox' => '0',
'range' => array(
'lower' => '0',
),
t3lib/stddb/tbl_be.php (revision )
'size' => '20',
'eval' => 'trim',
'max' => '50',
'checkbox' => '',
'softref' => 'substitute'
)
),
......
'max' => '20',
'eval' => 'date',
'default' => '0',
'checkbox' => '0'
)
),
'endtime' => array(
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
'range' => array(
'upper' => mktime(0, 0, 0, 12, 31, 2020),
......
'size' => '20',
'eval' => 'trim',
'max' => '50',
'checkbox' => '',
'softref' => 'substitute'
)
),
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0'
)
),
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0'
)
),
t3lib/stddb/tbl_pages.php (revision )
'size' => '50',
'max' => '255',
'eval' => 'trim,required',
'checkbox' => '',
),
),
'TSconfig' => array(
......
'size' => '13',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
),
),
......
'size' => '13',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
'range' => array(
'upper' => mktime(0, 0, 0, 12, 31, 2020),
......
'type' => 'input',
'size' => '50',
'max' => '255',
'checkbox' => '',
'eval' => 'trim',
),
),
......
'size' => '50',
'max' => '255',
'eval' => '',
'checkbox' => '',
),
),
'target' => array(
......
'size' => '50',
'max' => '80',
'eval' => 'trim',
'checkbox' => '',
),
),
'alias' => array(
......
'max' => '32',
'eval' => 'nospace,alphanum_x,lower,unique',
'softref' => 'notify',
'checkbox' => '',
),
),
'url' => array(
......
'max' => '255',
'eval' => 'trim,required',
'softref' => 'url',
'checkbox' => '',
),
),
'urltype' => array(
......
'size' => '13',
'max' => '20',
'eval' => 'datetime',
'checkbox' => '0',
'default' => '0',
),
),
......
'size' => '13',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
),
),
......
'size' => '23',
'eval' => 'trim',
'max' => '80',
'checkbox' => '',
),
),
'author_email' => array(
......
'eval' => 'trim',
'max' => '80',
'softref' => 'email[subst]',
'checkbox' => '',
),
),
'media' => array(
t3lib/class.t3lib_tceforms.php (revision )
$cssClasses = array($classAndStyleAttributes['class']);
$cssStyle = $classAndStyleAttributes['style'];
if (!isset($config['checkbox'])) {
$config['checkbox'] = '0';
$checkboxIsset = FALSE;
} else {
$checkboxIsset = TRUE;
}
if (in_array('date', $evalList) || in_array('datetime', $evalList)) {
if (in_array('datetime', $evalList)) {
$class = 'datetime';
......
} elseif (in_array('timesec', $evalList)) {
$inputId = uniqid('tceforms-timesecfield-');
$cssClasses[] = 'tceforms-textfield tceforms-timesecfield';
} elseif (in_array('year', $evalList)) {
$inputId = uniqid('tceforms-yearfield-');
$cssClasses[] = 'tceforms-textfield tceforms-yearfield';
} elseif (in_array('time', $evalList)) {
$inputId = uniqid('tceforms-timefield-');
$cssClasses[] = 'tceforms-textfield tceforms-timefield';
} elseif (in_array('int', $evalList)) {
$inputId = uniqid('tceforms-intfield-');
$cssClasses[] = 'tceforms-textfield tceforms-intfield';
} elseif (in_array('double2', $evalList)) {
$inputId = uniqid('tceforms-double2field-');
$cssClasses[] = 'tceforms-textfield tceforms-double2field';
} else {
$inputId = uniqid('tceforms-textfield-');
$cssClasses[] = 'tceforms-textfield';
if ($checkboxIsset === FALSE) {
$config['checkbox'] = '';
}
}
}
if (isset($config['wizards']['link'])) {
$inputId = uniqid('tceforms-linkfield-');
$cssClasses[] = 'tceforms-textfield tceforms-linkfield';
typo3/sysext/cms/tbl_cms.php (revision )
'size' => '20',
'eval' => 'trim',
'max' => '50',
'checkbox' => '',
'softref' => 'substitute'
)
),
......
'max' => '20',
'eval' => 'date',
'default' => '0',
'checkbox' => '0'
)
),
'endtime' => array(
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
'range' => array(
'upper' => mktime(0,0,0,12,31,2020),
......
'size' => '20',
'eval' => 'trim',
'max' => '50',
'checkbox' => ''
)
),
'description' => array(
......
'type' => 'input',
'size' => '35',
'max' => '120',
'checkbox' => '',
'default' => '',
'eval' => 'trim',
'softref' => 'substitute'
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0'
)
),
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
'range' => array(
'upper' => mktime(0,0,0,12,31,2020),
......
'size' => '50',
'max' => '255',
'eval' => 'trim,required',
'checkbox' => '',
)
),
'subtitle' => array(
......
'size' => '50',
'max' => '255',
'eval' => 'trim',
'checkbox' => '',
)
),
'nav_title' => array(
......
'size' => '50',
'max' => '255',
'eval' => 'trim',
'checkbox' => '',
)
),
'keywords' => array(
......
'size' => '23',
'eval' => 'trim',
'max' => '80',
'checkbox' => '',
)
),
'author_email' => array(
......
'eval' => 'trim',
'max' => '80',
'softref' => 'email[subst]',
'checkbox' => '',
)
),
'media' => array(
......
'max' => '255',
'eval' => 'trim',
'softref' => 'url',
'checkbox' => '',
)
),
'urltype' => array(
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0'
)
),
......
'size' => '8',
'max' => '20',
'eval' => 'date',
'checkbox' => '0',
'default' => '0',
'range' => array(
'upper' => mktime(0,0,0,12,31,2020),
    (1-1/1)