| 1 | Index: wp-includes/cache.php |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- wp-includes/cache.php (revision 13048) |
|---|
| 4 | +++ wp-includes/cache.php (working copy) |
|---|
| 5 | @@ -238,7 +238,7 @@ |
|---|
| 6 | if (empty ($group)) |
|---|
| 7 | $group = 'default'; |
|---|
| 8 | |
|---|
| 9 | - if (false !== $this->get($id, $group, false)) |
|---|
| 10 | + if (false !== $this->get($id, $group)) |
|---|
| 11 | return false; |
|---|
| 12 | |
|---|
| 13 | return $this->set($id, $data, $group, $expire); |
|---|
| 14 | @@ -266,7 +266,7 @@ |
|---|
| 15 | if (empty ($group)) |
|---|
| 16 | $group = 'default'; |
|---|
| 17 | |
|---|
| 18 | - if (!$force && false === $this->get($id, $group, false)) |
|---|
| 19 | + if (!$force && false === $this->get($id, $group)) |
|---|
| 20 | return false; |
|---|
| 21 | |
|---|
| 22 | unset ($this->cache[$group][$id]); |
|---|
| 23 | @@ -343,7 +343,7 @@ |
|---|
| 24 | if (empty ($group)) |
|---|
| 25 | $group = 'default'; |
|---|
| 26 | |
|---|
| 27 | - if (false === $this->get($id, $group, false)) |
|---|
| 28 | + if (false === $this->get($id, $group)) |
|---|
| 29 | return false; |
|---|
| 30 | |
|---|
| 31 | return $this->set($id, $data, $group, $expire); |
|---|
| 32 | Index: wp-app.php |
|---|
| 33 | =================================================================== |
|---|
| 34 | --- wp-app.php (revision 13048) |
|---|
| 35 | +++ wp-app.php (working copy) |
|---|
| 36 | @@ -1580,7 +1580,7 @@ |
|---|
| 37 | return false; |
|---|
| 38 | |
|---|
| 39 | if ($match[3] == 'Z') |
|---|
| 40 | - $match[3] == '+0000'; |
|---|
| 41 | + $match[3] = '+0000'; |
|---|
| 42 | |
|---|
| 43 | return strtotime($match[1] . " " . $match[2] . " " . $match[3]); |
|---|
| 44 | } |
|---|