Docs: Add a couple of strategically-placed spaces in `WP_Rewrite`.
Fixes #34218. Built from https://develop.svn.wordpress.org/trunk@34964 git-svn-id: http://core.svn.wordpress.org/trunk@34929 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1451ebc0d1
commit
cc4c59a1fa
|
@ -1806,6 +1806,7 @@ class WP_Rewrite {
|
||||||
$this->permalink_structure = get_option('permalink_structure');
|
$this->permalink_structure = get_option('permalink_structure');
|
||||||
$this->front = substr($this->permalink_structure, 0, strpos($this->permalink_structure, '%'));
|
$this->front = substr($this->permalink_structure, 0, strpos($this->permalink_structure, '%'));
|
||||||
$this->root = '';
|
$this->root = '';
|
||||||
|
|
||||||
if ( $this->using_index_permalinks() )
|
if ( $this->using_index_permalinks() )
|
||||||
$this->root = $this->index . '/';
|
$this->root = $this->index . '/';
|
||||||
|
|
||||||
|
@ -1843,6 +1844,7 @@ class WP_Rewrite {
|
||||||
if ( $permalink_structure != $this->permalink_structure ) {
|
if ( $permalink_structure != $this->permalink_structure ) {
|
||||||
$old_permalink_structure = $this->permalink_structure;
|
$old_permalink_structure = $this->permalink_structure;
|
||||||
update_option('permalink_structure', $permalink_structure);
|
update_option('permalink_structure', $permalink_structure);
|
||||||
|
|
||||||
$this->init();
|
$this->init();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34963';
|
$wp_version = '4.4-alpha-34964';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue