bug #1730367 Calendar "Go" has no effect
This commit is contained in:
@@ -13,6 +13,7 @@ $HeadURL$
|
||||
- bug #1733012 Unwanted table alias in delete button
|
||||
- bug #1736405 Pretty printer and HTML line breaks
|
||||
- bug #1745257 Invalid DB name is still displayed
|
||||
- bug #1730367 Calendar "Go" has no effect
|
||||
|
||||
2.10.2.0 (2007-06-15)
|
||||
|
||||
|
@@ -11,7 +11,7 @@ require('./libraries/header_meta_style.inc.php');
|
||||
//<![CDATA[
|
||||
var month_names = new Array("<?php echo implode('","', $month); ?>");
|
||||
var day_names = new Array("<?php echo implode('","', $day_of_week); ?>");
|
||||
var submit_text = "<?php echo $strGo; ?>";
|
||||
var submit_text = "<?php echo $strGo . ' (' . $strTime . ')'; ?>";
|
||||
//]]>
|
||||
</script>
|
||||
</head>
|
||||
|
@@ -180,6 +180,7 @@ function initCalendar() {
|
||||
second = parseInt(value.substr(12,2),10);
|
||||
}
|
||||
}
|
||||
|
||||
if (isNaN(year) || isNaN(month) || isNaN(day) || day == 0) {
|
||||
dt = new Date();
|
||||
year = dt.getFullYear();
|
||||
@@ -300,13 +301,15 @@ function initCalendar() {
|
||||
init_hour = hour;
|
||||
init_minute = minute;
|
||||
init_second = second;
|
||||
str += '<fieldset>';
|
||||
str += '<form method="NONE" class="clock" onsubmit="returnDate(\'' + current_date + '\')">';
|
||||
str += '<input id="hour" type="text" size="2" maxlength="2" onblur="this.value=formatNum2d(this.value, init_hour, \'hour\'); init_hour = this.value;" value="' + formatNum2(hour, 'hour') + '" />:';
|
||||
str += '<input id="minute" type="text" size="2" maxlength="2" onblur="this.value=formatNum2d(this.value, init_minute, \'minute\'); init_minute = this.value;" value="' + formatNum2(minute, 'minute') + '" />:';
|
||||
str += '<input id="second" type="text" size="2" maxlength="2" onblur="this.value=formatNum2d(this.value, init_second, \'second\'); init_second = this.value;" value="' + formatNum2(second, 'second') + '" />';
|
||||
str += '<br />';
|
||||
str += ' ';
|
||||
str += '<input type="submit" value="' + submit_text + '"/>';
|
||||
str += '</form>';
|
||||
str += '</fieldset>';
|
||||
|
||||
cnt.innerHTML = str;
|
||||
clock_set = 1;
|
||||
|
Reference in New Issue
Block a user