]> WPIA git - gigi.git/blobdiff - src/club/wpia/gigi/pages/StaticPage.java
upd: reword of rules.template and "Web of Trust"
[gigi.git] / src / club / wpia / gigi / pages / StaticPage.java
index b07004afe6b6fb5c8561fb5436a484028f65f6d9..25fd43e6dac6026cf03d94a89489c76b71407a39 100644 (file)
@@ -4,7 +4,6 @@ import java.io.IOException;
 import java.io.InputStream;
 import java.io.InputStreamReader;
 import java.io.UnsupportedEncodingException;
-import java.util.HashMap;
 
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
@@ -22,8 +21,7 @@ public class StaticPage extends Page {
 
     @Override
     public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
-        HashMap<String, Object> vars = new HashMap<String, Object>();
-        content.output(resp.getWriter(), getLanguage(req), vars);
+        content.output(resp.getWriter(), getLanguage(req), getDefaultVars(req));
     }
 
 }