Add med buttons to TinyMCE fullscreen. Props azaozz. fixes #7232
git-svn-id: http://svn.automattic.com/wordpress/trunk@8248 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -93,7 +93,10 @@ function _wp_translate_postdata( $update = false ) {
|
||||
$hh = $_POST['hh'];
|
||||
$mn = $_POST['mn'];
|
||||
$ss = $_POST['ss'];
|
||||
$aa = ($aa <= 0 ) ? date('Y') : $aa;
|
||||
$mm = ($mm <= 0 ) ? date('n') : $mm;
|
||||
$jj = ($jj > 31 ) ? 31 : $jj;
|
||||
$jj = ($jj <= 0 ) ? date('j') : $jj;
|
||||
$hh = ($hh > 23 ) ? $hh -24 : $hh;
|
||||
$mn = ($mn > 59 ) ? $mn -60 : $mn;
|
||||
$ss = ($ss > 59 ) ? $ss -60 : $ss;
|
||||
|
||||
Reference in New Issue
Block a user