Browse Source

课程表链接

visuddhinanda 5 years ago
parent
commit
2044ffb20f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/fullcalendar/examples/php/get-date.php

+ 1 - 1
app/fullcalendar/examples/php/get-date.php

@@ -25,7 +25,7 @@ function get_teacher_course($teacher_id){
 			$end = date("Y-m-d\TH:i:s+00:00",$lesson["date"]/1000+$lesson["duration"]);
 			$output[]=array("id"=>$lesson["id"],
 										"title"=>$couse["title"],
-										"url"=>"../../../course/lesson.php?id=".$lesson["id"],
+										"url"=>"../../course/lesson.php?id=".$lesson["id"],
 										"start"=> $start,
 										"end"=>$end
 									);