Skip to content

Commit

Permalink
Added <html> tag to beginning of pages.
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@401 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Jun 26, 2003
1 parent ce395e6 commit d774eff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion group.php
Expand Up @@ -390,6 +390,7 @@
{
if ($tokensexist == 1 && !$_GET['token'])
{
echo "<html>\n";
//NO TOKEN PRESENTED. EXPLAIN PROBLEM AND PRESENT FORM
foreach(file("$thistpl/startpage.pstpl") as $op)
{
Expand Down Expand Up @@ -429,6 +430,7 @@

if (!$tkexist)
{
echo "<html>\n";
//TOKEN DOESN'T EXIST OR HAS ALREADY BEEN USED. EXPLAIN PROBLEM AND EXIT
foreach(file("$thistpl/startpage.pstpl") as $op)
{
Expand Down Expand Up @@ -561,7 +563,7 @@
$_SESSION['fieldarray'][] = array("{$arow['qid']}", "$fieldname", "{$arow['title']}", "{$arow['question']}", "{$arow['type']}", "{$arow['gid']}", "{$arow['mandatory']}", $conditions);
}
}

echo "<html>\n";
foreach(file("$thistpl/startpage.pstpl") as $op)
{
echo templatereplace($op);
Expand Down Expand Up @@ -615,6 +617,7 @@
$percentcomplete = makegraph($_SESSION['step'], $_SESSION['totalsteps']);

//READ TEMPLATES, INSERT DATA AND PRESENT PAGE
echo "<html>\n";
foreach(file("$thistpl/startpage.pstpl") as $op)
{
echo templatereplace($op);
Expand Down

0 comments on commit d774eff

Please sign in to comment.