Reverse the defaults in Disqus plugin settings
Pages and posts to have commments by default, while home page to not. Signed-off-by: ADTC <send2adtc@gmail.com>
This commit is contained in:
parent
452ff20760
commit
2886fc5f98
|
@ -8,9 +8,9 @@ class pluginDisqus extends Plugin {
|
||||||
{
|
{
|
||||||
$this->dbFields = array(
|
$this->dbFields = array(
|
||||||
'shortname'=>'',
|
'shortname'=>'',
|
||||||
'enablePages'=>0,
|
'enablePages'=>1,
|
||||||
'enablePosts'=>0,
|
'enablePosts'=>1,
|
||||||
'enableDefaultHomePage'=>1
|
'enableDefaultHomePage'=>0
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue