Skip to content

Commit

Permalink
Fixed a few </html entries that didn't have the trailing pointy bracket!
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@165 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 30, 2003
1 parent 326235b commit 17c0c5e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.php
Expand Up @@ -113,7 +113,7 @@
{
echo "<center><b>$sitename</b><br />\n<br />\n<b>You cannot access this website without a valid Survey ID code.</b><br />\n";
echo "<br />\nPlease contact $siteadminemail for information.";
echo "</body>\n</html";
echo "</body>\n</html>";
exit;
}

Expand All @@ -122,7 +122,7 @@
echo "<center><b>$sitename<br />\n<br />\n<font color='red'>ERROR</font></b><br />\n<br />\n";
echo "This system has not yet been installed properly.<br />\n";
echo "Contact your $siteadminemail for information";
echo "</body>\n</html";
echo "</body>\n</html>";
exit;
}

Expand All @@ -136,14 +136,14 @@
if ($descount == 0)
{
echo "There is no survey with that SID. Sorry. [$descount][$desquery]";
echo "</body>\n</html";
echo "</body>\n</html>";
exit;
}
elseif ($expirydate < date("Y-m-d") && $expirydate != "0000-00-00")
{
echo "<center><b>$sitename<br />\n<br />\n<font color='red'>ERROR</font></b><br />\n<br />\n";
echo "Sorry. This survey has expired and is no longer available.<br />\n(Expiry date $expirydate)";
echo "</body>\n</html";
echo "</body>\n</html>";
exit;
}
$desresult = mysql_query($desquery);
Expand Down Expand Up @@ -462,7 +462,7 @@
echo "\t\t<input type='hidden' name='sid' value='$sid' />\n";
echo "\t</form></tr>\n";
echo "</table>\n";
echo "</body>\n</html";
echo "</body>\n</html>";
exit;
}
}
Expand Down

0 comments on commit 17c0c5e

Please sign in to comment.