diff --git a/Themes/core/BoardIndex.template.php b/Themes/core/BoardIndex.template.php
index 32e64c2..68876c1 100644
--- a/Themes/core/BoardIndex.template.php
+++ b/Themes/core/BoardIndex.template.php
@@ -392,6 +392,9 @@ function template_info_center()
if (!empty($bracketList))
echo ' (' . implode(', ', $bracketList) . ')';
+ //xxx Total online
+ echo ", ".($context['num_guests']+$context['num_users_online'])." Total";
+
echo $context['show_who'] ? '' : '', '
';
diff --git a/Themes/default/BoardIndex.template.php b/Themes/default/BoardIndex.template.php
index d9b374f..9e86d54 100644
--- a/Themes/default/BoardIndex.template.php
+++ b/Themes/default/BoardIndex.template.php
@@ -428,6 +428,9 @@ function template_info_center()
if (!empty($bracketList))
echo ' (' . implode(', ', $bracketList) . ')';
+ //xxx Total online
+ echo ", ".($context['num_guests']+$context['num_users_online'])." Total";
+
echo $context['show_who'] ? '' : '', '
';