--- a/htdocs/privacy.php Sun Jan 04 16:40:36 2009 -0500
+++ b/htdocs/privacy.php Mon Jan 05 22:29:36 2009 -0500
@@ -1,17 +1,16 @@
<?php
require('../config.php');
+require('../stats-fe.php');
-?><html>
- <head>
- <title><?php echo $nick; ?> - privacy info</title>
- <style type="text/css">
+$title = "$nick - privacy info";
+require("./themes/$webtheme/header.php");
+
+?> <style type="text/css">
p.code {
font-family: monospace;
margin-left: 1.5em;
}
</style>
- </head>
- <body>
<h1>Privacy information</h1>
<p><?php echo $nick; ?> is designed to collect IRC statistics. It does this by recording raw data and then letting the frontend (index.php and the
backend access abstraction in stats-fe.php) look at the data and draw graphs and measurements based on it.</p>
@@ -32,5 +31,5 @@
<p>Remove yourself from the anonymization list with:</p>
<p class="code">/msg <?php echo $nick; ?> denonymize</p>
<p>Want to know more about the numbers <?php echo $nick; ?> collects? <a href="datafile.php">Download a dump of <?php echo $nick; ?>'s database yourself</a>.</p>
- </body>
-</head>
+<?php
+require("./themes/$webtheme/footer.php");