Browse Source

Fix previous/next buttons in calendar - Refs #8135

José Loguercio 9 years ago
parent
commit
798b6f5208
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/admin/user_list.php

+ 1 - 1
main/admin/user_list.php

@@ -131,7 +131,7 @@ $(document).ready(function() {
 //Load user calendar
 function load_calendar(user_id, month, year) {
  	var url = "'.api_get_path(WEB_AJAX_PATH).'agenda.ajax.php?a=get_user_agenda&user_id=" +user_id + "&month="+month+"&year="+year;
-	$("#dialog").load(url);
+	$(".modal-body").load(url);
 }
 </script>';