From: Wilfried Goesgens Date: Sun, 17 Jul 2011 23:33:21 +0000 (+0000) Subject: we have to wrap do_template into some functions, else it won't work. fix the display... X-Git-Tag: v8.11~567 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b1ba36068b923b519d3cce9ddbd8e598398d7a58 we have to wrap do_template into some functions, else it won't work. fix the display of the user. --- diff --git a/webcit/useredit.c b/webcit/useredit.c index ef242981f..c6dee8107 100644 --- a/webcit/useredit.c +++ b/webcit/useredit.c @@ -823,7 +823,12 @@ void _display_edituser(void) { display_edituser(NULL, 0); } -void showuser(void) { do_template("user_show");} +void showuser(void) +{ + output_headers(1, 0, 0, 0, 1, 0); + do_template("user_show"); + end_burst(); +} void