diff --git a/stock/templates/public/index.html b/stock/templates/public/index.html
index 03341626..76821d67 100644
--- a/stock/templates/public/index.html
+++ b/stock/templates/public/index.html
@@ -32,7 +32,13 @@
- My Corp and/or Alliance Name
+
+ {% if IS_CORP %}
+ {{ CORP_NAME }}
+ {% else %}
+ {{ ALLIANCE_NAME }}
+ {% endif %}
+
diff --git a/util/context_processors.py b/util/context_processors.py
index 5268280d..245c023e 100755
--- a/util/context_processors.py
+++ b/util/context_processors.py
@@ -15,7 +15,7 @@ def alliance_id(request):
return {'ALLIANCE_ID': settings.ALLIANCE_ID}
def alliance_name(request):
- return {'ALLIANCE_NAME': settings.CORP_NAME}
+ return {'ALLIANCE_NAME': settings.ALLIANCE_NAME}
def jabber_url(request):
return {'JABBER_URL': settings.JABBER_URL}