chuweiqiang 11 months ago
parent
commit
95c348732e
2 changed files with 3 additions and 3 deletions
  1. 2 2
      .idea/workspace.xml
  2. 1 1
      application/common/service/CheckPower.php

+ 2 - 2
.idea/workspace.xml

@@ -2,7 +2,7 @@
 <project version="4">
   <component name="ChangeListManager">
     <list default="true" id="1a36929e-c054-4875-a943-593a74e55fa4" name="Default Changelist" comment="">
-      <change beforePath="$PROJECT_DIR$/application/api/controller/Forum.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/api/controller/Forum.php" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/application/common/service/CheckPower.php" beforeDir="false" afterPath="$PROJECT_DIR$/application/common/service/CheckPower.php" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -589,7 +589,7 @@
       <workItem from="1712968426089" duration="7869000" />
       <workItem from="1713141319788" duration="25005000" />
       <workItem from="1713228029820" duration="12598000" />
-      <workItem from="1713313957989" duration="8760000" />
+      <workItem from="1713313957989" duration="8828000" />
     </task>
     <servers />
   </component>

+ 1 - 1
application/common/service/CheckPower.php

@@ -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();