|
@@ -50,6 +50,7 @@ class Journal_v1 extends Core
|
|
|
$this->data['push'][$k] = $this->info($v);
|
|
|
$this->data['push'][$k] = $this->getButton($this->data['push'][$k]);
|
|
|
}
|
|
|
+ $this->data['push'] = $this->data['push'][0];
|
|
|
}
|
|
|
|
|
|
$data = Dever::db('journal/info')->getAllByPage($where);
|
|
@@ -77,7 +78,7 @@ class Journal_v1 extends Core
|
|
|
|
|
|
public function getList_noCache($data)
|
|
|
{
|
|
|
- if ($data['push']) {
|
|
|
+ if ($data['push'] && isset($data['push'][0])) {
|
|
|
foreach ($data['push'] as $k => $v) {
|
|
|
$num_ding = Dever::load('act/lib/num')->getCounter($v['id']);
|
|
|
if ($num_ding && $num_ding >= $v['num_ding']) {
|