Merge branch 'autocomplete-tags'
[scuttle] / templates / top.inc.php
index d7a6731cef34dc2ec310e1ad1957f9e04050e262..6a1bdb8e9fa8440e2b7accb28354c72b7fac3006 100644 (file)
@@ -39,7 +39,11 @@ if (isset($_GET['popup'])) {
 
 <?php
 if (isset($subtitle)) {
-    echo '<h2>'. $subtitle ."</h2>\n";
+    echo '<h2>'. $subtitle;
+    if (isset($total)) {
+        echo " (" . $total . ")";
+    }
+    echo "</h2>\n";
 }
 if (isset($error)) {
     echo '<p class="error">'. $error ."</p>\n";

Benjamin Mako Hill || Want to submit a patch?