|
@@ -689,11 +689,11 @@ class Journal extends Core
|
|
|
{
|
|
|
$name = $info['name'];
|
|
|
$focus = $info['focus'];
|
|
|
- $author_id = $info['author_id'];
|
|
|
+ //$author_id = $info['author_id'];
|
|
|
$content = $info['content'];
|
|
|
unset($info['name']);
|
|
|
unset($info['focus']);
|
|
|
- unset($info['author_id']);
|
|
|
+ //unset($info['author_id']);
|
|
|
unset($info['content']);
|
|
|
|
|
|
if (($info['type'] == 1 || $info['type'] == 7 || $info['type'] == 8) && $info['text']) {
|
|
@@ -730,7 +730,7 @@ class Journal extends Core
|
|
|
$info['info'] = array();
|
|
|
$info['info']['name'] = $name;
|
|
|
$info['info']['focus'] = $focus;
|
|
|
- $info['info']['author_id'] = $author_id;
|
|
|
+ //$info['info']['author_id'] = $author_id;
|
|
|
$info['info']['content'] = $content;
|
|
|
$info['info'] = Dever::load('content/lib/article')->getContent($info['info'], $this->data['uid']);
|
|
|
} elseif ($info['type'] == 4 || $info['type'] == 5) {
|