git-svn-id: http://xe-core.googlecode.com/svn/trunk@1635 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-17 13:03:47 +00:00
parent e9549dbd67
commit 917fef9d9f
4 changed files with 15 additions and 12 deletions

View file

@ -68,11 +68,11 @@
}
function allowComment() {
return $this->get('allow_comment') == 'Y' ? true : false;
return $this->get('allow_comment') == 'Y' || !$this->isExists() ? true : false;
}
function allowTrackback() {
return $this->get('allow_trackback') == 'Y' ? true : false;
return $this->get('allow_trackback') == 'Y' || !$this->isExists() ? true : false;
}
function isLocked() {