Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
Fixed a bug with flat posts FS.
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicchabant committed Mar 3, 2011
1 parent dff4dbd commit f5b15ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions website/_piecrust/FileSystem.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ public function getFlatPostFiles()
continue;

$result[] = array(
'year' => intval($matches[1]),
'month' => intval($matches[2]),
'day' => intval($matches[3]),
'year' => $matches[1],
'month' => $matches[2],
'day' => $matches[3],
'name' => $matches[4],
'path' => $path
);
Expand Down

0 comments on commit f5b15ac

Please sign in to comment.