Skip to content

Commit 32ccab1

Browse files
bug fix
1 parent 59db973 commit 32ccab1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Module/ContentsDatabase.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -385,11 +385,12 @@ function SetContent($contentPath)
385385
$this->path = static::NormalizedPath($contentPath);
386386

387387
//Content情報を初期化
388-
$this->body = "";
388+
$this->title = "";
389389
$this->summary = "";
390-
$this->childPathList = array();
391-
$this->parentPath = "";
390+
$this->body = "";
392391
$this->tags = array();
392+
$this->parentPath = "";
393+
$this->childPathList = array();
393394

394395
$bodyStartPosition = 0;
395396
$pattern = '/^\s*<Header>(.*?)<\/Header>/s';

0 commit comments

Comments
 (0)