|
@@ -22,7 +22,7 @@ class Journal extends Core
|
|
|
}
|
|
|
$this->data['journal'] = $data;
|
|
|
} else {
|
|
|
- $this->data['journal'] = (object) array();
|
|
|
+ $this->data['journal'] = array();
|
|
|
}
|
|
|
|
|
|
return $this->data;
|
|
@@ -46,7 +46,7 @@ class Journal extends Core
|
|
|
$data['subscribe'] = Dever::load('act/lib/subscribe')->getList($data['id'], 4);
|
|
|
|
|
|
if (!$data['subscribe']) {
|
|
|
- $data['subscribe'] = (object) array();
|
|
|
+ $data['subscribe'] = array();
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -67,7 +67,7 @@ class Journal extends Core
|
|
|
$count = count($this->data['push_jingxuan']);
|
|
|
|
|
|
if ($count < 4 || !$this->data['push_jingxuan']) {
|
|
|
- $this->data['push_jingxuan'] = (object) array();
|
|
|
+ $this->data['push_jingxuan'] = array();
|
|
|
}
|
|
|
|
|
|
if ($num == 5) {
|
|
@@ -114,6 +114,10 @@ class Journal extends Core
|
|
|
if ($active && $active['status'] == 1) {
|
|
|
$this->data['info']['active'] = 1;
|
|
|
}
|
|
|
+ $time = time();
|
|
|
+ if ($active && $time >= $active['start'] && $time < $active['end']) {
|
|
|
+ $this->data['info']['active'] = 1;
|
|
|
+ }
|
|
|
|
|
|
if ($this->data['info']['active'] == 1) {
|
|
|
$this->setButton('share', 1);
|
|
@@ -251,6 +255,10 @@ class Journal extends Core
|
|
|
//Dever::alert('未订阅');
|
|
|
}
|
|
|
|
|
|
+ if ($this->data['info']['buy'] == 2) {
|
|
|
+ Dever::load('act/lib/subscribe')->submit($this->data['uid'], $id, 4);
|
|
|
+ }
|
|
|
+
|
|
|
if ($this->data['uid'] > 0) {
|
|
|
Dever::score($this->data['uid'], 'read_journal', '阅读小刊');
|
|
|
}
|
|
@@ -265,7 +273,7 @@ class Journal extends Core
|
|
|
}
|
|
|
$this->data['content'] = $data;
|
|
|
} else {
|
|
|
- $this->data['content'] = (object) array();
|
|
|
+ $this->data['content'] = array();
|
|
|
}
|
|
|
|
|
|
return $this->data;
|