Docs: Correct a number of typos/spelling mistakes in inline comments.
Props ottok. Fixes #38464. git-svn-id: https://develop.svn.wordpress.org/trunk@38893 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
edf8779f71
commit
cedd323452
@ -2922,7 +2922,7 @@ div.action-links {
|
|||||||
#section-holder {
|
#section-holder {
|
||||||
position: static;
|
position: static;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-bottom: 70px; /* reset from the two column height fix, plus accomodate footer */
|
padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */
|
||||||
}
|
}
|
||||||
|
|
||||||
#plugin-information .fyi h3,
|
#plugin-information .fyi h3,
|
||||||
|
@ -353,7 +353,7 @@ function export_wp( $args = array() ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ouput all navigation menu terms
|
* Output all navigation menu terms
|
||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*/
|
*/
|
||||||
|
@ -133,7 +133,7 @@ function insert_with_markers( $filename, $marker, $insertion ) {
|
|||||||
$lines[] = rtrim( fgets( $fp ), "\r\n" );
|
$lines[] = rtrim( fgets( $fp ), "\r\n" );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Split out the existing file into the preceeding lines, and those that appear after the marker
|
// Split out the existing file into the preceding lines, and those that appear after the marker
|
||||||
$pre_lines = $post_lines = $existing_lines = array();
|
$pre_lines = $post_lines = $existing_lines = array();
|
||||||
$found_marker = $found_end_marker = false;
|
$found_marker = $found_end_marker = false;
|
||||||
foreach ( $lines as $line ) {
|
foreach ( $lines as $line ) {
|
||||||
|
@ -2821,7 +2821,7 @@ function pre_schema_upgrade() {
|
|||||||
// Multisite schema upgrades.
|
// Multisite schema upgrades.
|
||||||
if ( $wp_current_db_version < 25448 && is_multisite() && wp_should_upgrade_global_tables() ) {
|
if ( $wp_current_db_version < 25448 && is_multisite() && wp_should_upgrade_global_tables() ) {
|
||||||
|
|
||||||
// Upgrade verions prior to 3.7
|
// Upgrade versions prior to 3.7
|
||||||
if ( $wp_current_db_version < 25179 ) {
|
if ( $wp_current_db_version < 25179 ) {
|
||||||
// New primary key for signups.
|
// New primary key for signups.
|
||||||
$wpdb->query( "ALTER TABLE $wpdb->signups ADD signup_id BIGINT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST" );
|
$wpdb->query( "ALTER TABLE $wpdb->signups ADD signup_id BIGINT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST" );
|
||||||
|
@ -318,7 +318,7 @@
|
|||||||
topHeight = heights.textTopHeight;
|
topHeight = heights.textTopHeight;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TinyMCE still intializing.
|
// TinyMCE still initializing.
|
||||||
if ( ! visual && ! $top.length ) {
|
if ( ! visual && ! $top.length ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -140,7 +140,7 @@ window.wp = window.wp || {};
|
|||||||
/**
|
/**
|
||||||
* Handle server response
|
* Handle server response
|
||||||
*
|
*
|
||||||
* @param {string} str Response, will be '0' when an error occured otherwise contains link to add Featured Image.
|
* @param {string} str Response, will be '0' when an error occurred otherwise contains link to add Featured Image.
|
||||||
*/
|
*/
|
||||||
function(str){
|
function(str){
|
||||||
if ( str == '0' ) {
|
if ( str == '0' ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user