diff --git a/templates/jlog/log_online.html b/templates/jlog/log_online.html
index 7e2858e57..1af12a9aa 100644
--- a/templates/jlog/log_online.html
+++ b/templates/jlog/log_online.html
@@ -223,10 +223,12 @@
$.ajax({
type: "GET",
url: g_url,
- success: window.open("/jlog/log_list/online/", "_self")
+ success: function(){
+ document.location.reload();
+ }
// error: window.open(g_url, "_self")
});
}
-{% endblock %}
\ No newline at end of file
+{% endblock %}