Pārlūkot izejas kodu

Merge pull request #881 from visuddhinanda/chanpter_progress

:bug: 栏目跳转路径错误 index1.php
visuddhinanda 3 gadi atpakaļ
vecāks
revīzija
efa4538454
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 3 3
      public/app/palicanon/palicanon.js

+ 3 - 3
public/app/palicanon/palicanon.js

@@ -1311,17 +1311,17 @@ function ReanderMainMenu(){
     if(_view=="community"){
         html += "class='select'";
     }
-    html +="><a href='index1.php?view=community'>社区</a></span>";
+    html +="><a href='index.php?view=community'>社区</a></span>";
     html += "<span ";
     if(_view=="category"){
         html += "class='select'";
     }
-    html +="><a href='index1.php?view=category' >分类</a></span>";
+    html +="><a href='index.php?view=category' >分类</a></span>";
     html += "<span ";
     if(_view=="my"){
         html += "class='select'";
     }
-    html +="><a href='index1.php?view=my' >我的</a></span>";
+    html +="><a href='index.php?view=my' >我的</a></span>";
     $("#main_menu").html(html);
 }