Skip to content

Commit

Permalink
Removed size setting on browse table (table can grow or shrink based …
Browse files Browse the repository at this point in the history
…on size of entry). Added valign='top' to last cell(s)

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@307 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed May 25, 2003
1 parent 5b39d25 commit feb4509
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/tokens.php
Expand Up @@ -207,7 +207,7 @@

$_GET['start']--;

echo "<table width='600' cellpadding='1' cellspacing='1' align='center' bgcolor='#CCCCCC'>\n";
echo "<table cellpadding='1' cellspacing='1' align='center' bgcolor='#CCCCCC'>\n";
//COLUMN HEADINGS
echo "\t<tr>\n";
echo "\t\t<th align='left'><a href='tokens.php?sid=$sid&action=browse&order=tid'><img src='DownArrow.gif' alt='Sort by ID' border='0' align='left'></a>$setfont"."ID</th>\n";
Expand Down Expand Up @@ -241,7 +241,7 @@
if ($brow['completed'] == "Y" && $surveyprivate == "N")
{
echo "\t\t<form action='browse.php' method='post' target='_blank'>\n";
echo "\t\t<td align='center'>\n";
echo "\t\t<td align='center' valign='top'>\n";
echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='V' title='View Response' />\n";
echo "\t\t</td>\n";
echo "\t\t<input type='hidden' name='sid' value='$sid' />\n";
Expand All @@ -251,13 +251,13 @@
}
elseif ($brow['completed'] != "Y" && $brow['token'] && $brow['sent'] != "Y")
{
echo "\t\t<td align='center'>\n";
echo "\t\t<td align='center' valign='top'>\n";
echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='I' title='Send Invitation Email' onClick=\"window.open('$PHP_SELF?sid=$sid&action=email&tid=$brow[0]', '_top')\" />";
echo "\t\t</td>\n";
}
elseif ($brow['completed'] != "Y" && $brow['token'] && $brow['sent'] == "Y")
{
echo "\t\t<td align='center'>\n";
echo "\t\t<td align='center' valign='top'>\n";
echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='R' title='Send Reminder Email' onClick=\"window.open('$PHP_SELF?sid=$sid&action=remind&tid=$brow[0]', '_top')\" />";
echo "\t\t</td>\n";
}
Expand Down

0 comments on commit feb4509

Please sign in to comment.