* add new 'Context' Parameter to the template call
[citadel.git] / webcit / openid.c
index 58c3503ab46049cc8f4aee249dfeb82fbade4c2a..2d905bd50d915d7abd7a1c17227d41241e584373 100644 (file)
@@ -18,7 +18,7 @@ void display_openids(void)
        wprintf("<div class=\"fix_scrollbar_bug\">");
 
        svput("BOXTITLE", WCS_STRING, _("Manage Account/OpenID Associations"));
-       do_template("beginbox");
+       do_template("beginbox", NULL);
 
        if (serv_info.serv_supports_openid) {
 
@@ -54,7 +54,7 @@ void display_openids(void)
                wprintf(_("%s does not permit authentication via OpenID."), serv_info.serv_humannode);
        }
 
-       do_template("endbox");
+       do_template("endbox", NULL);
        wprintf("</div>");
        wDumpContent(2);
 }