Fix %post_id% and date collision avoidance. http://mosquito.wordpress.org/view.php?id=1027
git-svn-id: http://svn.automattic.com/wordpress/trunk@2410 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c84f9a4325
commit
3a0fc8bf43
|
@ -858,24 +858,32 @@ class WP_Rewrite {
|
||||||
$endians = array('%year%/%monthnum%/%day%', '%day%/%monthnum%/%year%', '%monthnum%/%day%/%year%');
|
$endians = array('%year%/%monthnum%/%day%', '%day%/%monthnum%/%year%', '%monthnum%/%day%/%year%');
|
||||||
|
|
||||||
$this->date_structure = '';
|
$this->date_structure = '';
|
||||||
|
$date_endian = '';
|
||||||
|
|
||||||
foreach ($endians as $endian) {
|
foreach ($endians as $endian) {
|
||||||
if (false !== strpos($this->permalink_structure, $endian)) {
|
if (false !== strpos($this->permalink_structure, $endian)) {
|
||||||
$this->date_structure = $this->front . $endian;
|
$date_endian= $endian;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( empty($date_endian) )
|
||||||
|
$date_endian = '%year%/%monthnum%/%day%';
|
||||||
|
|
||||||
// Do not allow the date tags and %post_id% to overlap in the permalink
|
// Do not allow the date tags and %post_id% to overlap in the permalink
|
||||||
// structure. If they do, move the date tags to $front/date/.
|
// structure. If they do, move the date tags to $front/date/.
|
||||||
$front = $this->front;
|
$front = $this->front;
|
||||||
if ( false !== strpos($this->permalink_structure, $this->front . '%post_id%') )
|
preg_match_all('/%.+?%/', $this->permalink_structure, $tokens);
|
||||||
$front = $front . 'date/';
|
$tok_index = 1;
|
||||||
|
foreach ($tokens[0] as $token) {
|
||||||
if (empty($this->date_structure)) {
|
if ( ($token == '%post_id%') && ($tok_index <= 3) ) {
|
||||||
$this->date_structure = $front . '%year%/%monthnum%/%day%';
|
$front = $front . 'date/';
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->date_structure = $front . $date_endian;
|
||||||
|
|
||||||
return $this->date_structure;
|
return $this->date_structure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue