Remove reference to edit_date which no longer exists. Props fitzrev. see #6250

git-svn-id: https://develop.svn.wordpress.org/trunk@7339 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-03-17 03:09:50 +00:00
parent 56a7acdf15
commit 9a8836f268
1 changed files with 1 additions and 1 deletions

View File

@ -841,7 +841,7 @@ function touch_time( $edit = 1, $for_post = 1, $tab_index = 0 ) {
$mn = ($edit) ? mysql2date( 'i', $post_date ) : gmdate( 'i', $time_adj );
$ss = ($edit) ? mysql2date( 's', $post_date ) : gmdate( 's', $time_adj );
$month = "<select id=\"mm\" name=\"mm\" onchange=\"edit_date.checked=true\"$tab_index_attribute>\n";
$month = "<select id=\"mm\" name=\"mm\"$tab_index_attribute>\n";
for ( $i = 1; $i < 13; $i = $i +1 ) {
$month .= "\t\t\t" . '<option value="' . zeroise($i, 2) . '"';
if ( $i == $mm )