diff --git a/res/forum/admin.html b/res/forum/admin.html index 5e17eea..3fe6353 100644 --- a/res/forum/admin.html +++ b/res/forum/admin.html @@ -18,6 +18,13 @@ $("#left_panel").on("click", ".output", function(event) { - open_user(event.target.innerHTML); + $.ajax + ({ + url: "./res/forum/api/user_info.php?username=" + event.target.innerHTML, + success: function(result) + { + $("#right_panel").html(result); + } + }); }); \ No newline at end of file