diff --git a/src/allmydata/web/introducer.xhtml b/src/allmydata/web/introducer.xhtml
index 06709864c..6738a2905 100644
--- a/src/allmydata/web/introducer.xhtml
+++ b/src/allmydata/web/introducer.xhtml
@@ -55,7 +55,7 @@
Nickname
- PeerID |
+ Tub ID
Advertised IPs |
Connected From |
Since |
@@ -65,14 +65,14 @@
-
|
+
|
|
|
|
|
- no peers! |
+ no subscribers! |
diff --git a/src/allmydata/web/introweb.py b/src/allmydata/web/introweb.py
index 0fc456337..843fd0e03 100644
--- a/src/allmydata/web/introweb.py
+++ b/src/allmydata/web/introweb.py
@@ -115,7 +115,7 @@ class IntroducerRoot(rend.Page):
def render_subscriber_row(self, ctx, s):
ctx.fillSlots("nickname", s.nickname)
- ctx.fillSlots("peerid", s.tubid)
+ ctx.fillSlots("tubid", s.tubid)
ctx.fillSlots("advertised", " ".join(s.advertised_addresses))
ctx.fillSlots("connected", s.remote_address)
since_s = time.strftime("%H:%M:%S %d-%b-%Y", time.localtime(s.when))