Explorar el Código

Fix previous/next buttons in calendar - Refs #8135

José Loguercio hace 9 años
padre
commit
798b6f5208
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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>';