Skip to content

Commit

Permalink
fix: fix on fix for 7.4 and SimplePie
Browse files Browse the repository at this point in the history
  • Loading branch information
David McReynolds committed Jun 4, 2020
1 parent 8fdcce6 commit 1737a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuel/modules/fuel/libraries/Simplepie.php
Original file line number Diff line number Diff line change
Expand Up @@ -12621,8 +12621,8 @@ class SimplePie_Parse_Date
*/
public function __construct()
{
$this->day_pcre = '(' . implode(array_keys('|', $this->day)) . ')';
$this->month_pcre = '(' . implode(array_keys('|', $this->month)) . ')';
$this->day_pcre = '(' . implode('|', array_keys($this->day)) . ')';
$this->month_pcre = '(' . implode('|', array_keys($this->month)) . ')';

static $cache;
if (!isset($cache[get_class($this)]))
Expand Down

0 comments on commit 1737a26

Please sign in to comment.