changeset 295:e387d717cf46

Indentation cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 25 Nov 2013 15:40:21 +0200
parents efba5a51f8fa
children bbdf1b9c5a07
files vote.inc.php
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/vote.inc.php	Mon Nov 25 03:19:58 2013 +0200
+++ b/vote.inc.php	Mon Nov 25 15:40:21 2013 +0200
@@ -104,11 +104,11 @@
       {
         $eid = $entry["id"];
         echo
-        "  <tr class=\"".($row % 2 == 1 ? "rodd" : "reven")."\">\n".
-        "   <td class=\"vshown\">".($entry["show_id"] > 0 ? $entry["show_id"] : "-")."</td>\n".
-        "   <td class=\"vtitle\">".$entry["name"]."</td>\n".
-        ($compo["showAuthors"] ? "   <td class=\"vauthor\">".$entry["author"]."</td>\n" : "").
-        "   ";
+          "  <tr class=\"".($row % 2 == 1 ? "rodd" : "reven")."\">\n".
+          "   <td class=\"vshown\">".($entry["show_id"] > 0 ? $entry["show_id"] : "-")."</td>\n".
+          "   <td class=\"vtitle\">".$entry["name"]."</td>\n".
+          ($compo["showAuthors"] ? "   <td class=\"vauthor\">".$entry["author"]."</td>\n" : "").
+          "   ";
 
         $val = isset($votes[$eid]) ? $votes[$eid] : 0;
 
@@ -124,8 +124,8 @@
         }
 
         echo
-        "\n".
-        "  </tr>\n";
+          "\n".
+          "  </tr>\n";
 
         $row++;
       }