bug #1730367 Calendar "Go" has no effect
This commit is contained in:
@@ -83,6 +83,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
- bug #1733012 Unwanted table alias in delete button
|
- bug #1733012 Unwanted table alias in delete button
|
||||||
- bug #1736405 Pretty printer and HTML line breaks
|
- bug #1736405 Pretty printer and HTML line breaks
|
||||||
- bug #1745257 Invalid DB name is still displayed
|
- bug #1745257 Invalid DB name is still displayed
|
||||||
|
- bug #1730367 Calendar "Go" has no effect
|
||||||
|
|
||||||
2.10.2.0 (2007-06-15)
|
2.10.2.0 (2007-06-15)
|
||||||
|
|
||||||
|
@@ -18,7 +18,7 @@ require './libraries/header_meta_style.inc.php';
|
|||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
var month_names = new Array("<?php echo implode('","', $month); ?>");
|
var month_names = new Array("<?php echo implode('","', $month); ?>");
|
||||||
var day_names = new Array("<?php echo implode('","', $day_of_week); ?>");
|
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>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
|
@@ -304,13 +304,15 @@ function initCalendar() {
|
|||||||
init_hour = hour;
|
init_hour = hour;
|
||||||
init_minute = minute;
|
init_minute = minute;
|
||||||
init_second = second;
|
init_second = second;
|
||||||
|
str += '<fieldset>';
|
||||||
str += '<form method="NONE" class="clock" onsubmit="returnDate(\'' + current_date + '\')">';
|
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="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="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 += '<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 += '<input type="submit" value="' + submit_text + '"/>';
|
||||||
str += '</form>';
|
str += '</form>';
|
||||||
|
str += '</fieldset>';
|
||||||
|
|
||||||
cnt.innerHTML = str;
|
cnt.innerHTML = str;
|
||||||
clock_set = 1;
|
clock_set = 1;
|
||||||
|
Reference in New Issue
Block a user