|
@@ -73,7 +73,7 @@ class CheckPower
|
|
|
if($first_id != 0) {
|
|
|
$parent = ArticleIntro::where('id', $first_id)->where('status', 1)->where('is_deleted', 0)->find();
|
|
|
if (!$parent) return 0;
|
|
|
- if(!isset($parent) && $parent->type == 1)
|
|
|
+ if(isset($parent) && $parent->type == 1)
|
|
|
{
|
|
|
$cate = ArticleCate::where('id','in',[$parent->first_classify,$parent->second_classify])
|
|
|
->where('status',1)->where('is_deleted',0)->count();
|
|
@@ -96,7 +96,7 @@ class CheckPower
|
|
|
$parent = DatumIntro::where('id', $first_id)->where('status', 1)->where('is_deleted', 0)->find();
|
|
|
if (!$parent) return 0;
|
|
|
}
|
|
|
- if(isset($parent) || !$parent->datum_cate) return 1;
|
|
|
+ if(!isset($parent) || !$parent->datum_cate) return 1;
|
|
|
$cate = DatumCate::where('id','in',[$parent->datum_cate])
|
|
|
->where('status',1)->where('is_deleted',0)->count();
|
|
|
//if($cate != 1) return 0;
|