changeset 708:114b77baf1c2

Mostly cosmetic changes.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 10 Nov 2014 23:27:33 +0200
parents 2dc533ae3afd
children 1a9005eafb37
files pages/vote.inc.php
diffstat 1 files changed, 4 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/pages/vote.inc.php	Mon Nov 10 23:26:48 2014 +0200
+++ b/pages/vote.inc.php	Mon Nov 10 23:27:33 2014 +0200
@@ -139,9 +139,9 @@
 
       for ($i = stGetSetting("voteMax"); $i >= stGetSetting("voteMin"); $i--)
       {
-        echo "<th class=\"vvalue\">".$i."</th>";
+        echo "   <th class=\"vvalue\">".$i."</th>\n";
       }
-      echo "\n".
+      echo
       "  </tr>\n";
 
       $row = 0;
@@ -161,17 +161,16 @@
         {
           $nid = "ve".$eid."_".$i;
           echo
-            "<td class=\"vvalue\">".
+            "    <td class=\"vvalue\">".
             "<input type=\"radio\" id=\"".$nid.
             "\" name=\"ventry".$eid."\" value=\"".$i."\" ".
             "onClick=\"updateVote(".$eid.",".$i.")\" ".
             ($val == $i ? "checked=\"checked\" ": "")."/>".
             "<label for=\"".$nid."\"></label>".
-            "</td>";
+            "</td>\n";
         }
 
         echo
-          "\n".
           "  </tr>\n";
 
         $row++;