Changeset 46260 for trunk/src/wp-includes/SimplePie/Parse/Date.php
- Timestamp:
- 09/23/2019 06:16:14 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/SimplePie/Parse/Date.php
r35283 r46260 543 543 public function __construct() 544 544 { 545 $this->day_pcre = '(' . implode( array_keys($this->day), '|') . ')';546 $this->month_pcre = '(' . implode( array_keys($this->month), '|') . ')';545 $this->day_pcre = '(' . implode('|', array_keys($this->day)) . ')'; 546 $this->month_pcre = '(' . implode('|', array_keys($this->month)) . ')'; 547 547 548 548 static $cache;
Note: See TracChangeset
for help on using the changeset viewer.