diff --git a/html/user/index.php b/html/user/index.php
index aaa5854493..4b6309564b 100644
--- a/html/user/index.php
+++ b/html/user/index.php
@@ -30,7 +30,7 @@ if (project_is_stopped()) {
diff --git a/html/user/stats.php b/html/user/stats.php
index b146511129..39cbb9a5fd 100644
--- a/html/user/stats.php
+++ b/html/user/stats.php
@@ -18,11 +18,18 @@ and the files are
This data can be summarized and represented as Web pages.
-An example (implemented using PHP) is at
-http://www.boinc.dk.
-If you are interested in using or contributing to this code,
-please contact the developer,
-Janus Kristensen.
+Examples:
+
+Both systems are implemented using PHP.
+If you are interested in participating in these efforts,
+please contact the developers.
";
page_tail();
diff --git a/py/Boinc/database.py b/py/Boinc/database.py
index f8fb296b4d..dd51bdd544 100644
--- a/py/Boinc/database.py
+++ b/py/Boinc/database.py
@@ -267,8 +267,7 @@ database_classes_ = [ Project,
Team,
Host,
Workunit,
- Result,
- Workseq ]
+ Result ]
Projects = Project._table
Platforms = Platform._table
@@ -280,6 +279,5 @@ Teams = Team._table
Hosts = Host._table
Workunits = Workunit._table
Results = Result._table
-Workseqs = Workseq._table
init_table_classes(database_classes_,{'canonical_result': Result})
diff --git a/py/Boinc/db_mid.py b/py/Boinc/db_mid.py
index 52a6c8844a..1e6bfab181 100644
--- a/py/Boinc/db_mid.py
+++ b/py/Boinc/db_mid.py
@@ -53,10 +53,6 @@ class front_Result:
def __repr__(self):
return ''%(self.id, self.name, self.workunit.id, self.workunit.name)
-class front_Workseq:
- def __repr__(self):
- return ''%(self.id)
-
MixIn(database.Project, front_Project)
MixIn(database.Platform, front_Platform)
MixIn(database.CoreVersion, front_CoreVersion)
@@ -67,4 +63,3 @@ MixIn(database.Team, front_Team)
MixIn(database.Host, front_Host)
MixIn(database.Workunit, front_Workunit)
MixIn(database.Result, front_Result)
-MixIn(database.Workseq, front_Workseq)