Skip to content

Commit

Permalink
Removed \n, \t\t from second and third buttons in action column in br…
Browse files Browse the repository at this point in the history
…owse to stop linewrapping between buttons.

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@128 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 24, 2003
1 parent f33ef26 commit 77f841e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/tokens.php
Expand Up @@ -185,7 +185,7 @@
echo "\t\t<th align='left'><a href='tokens.php?sid=$sid&action=browse&order=token'><img src='DownArrow.gif' alt='Sort by Token' border='0' align='left'></a>$setfont"."Token</th>\n";
echo "\t\t<th align='left'><a href='tokens.php?sid=$sid&action=browse&order=sent%20desc'><img src='DownArrow.gif' alt='Sort by Invite?' border='0' align='left'></a>$setfont"."Invite?</th>\n";
echo "\t\t<th align='left'><a href='tokens.php?sid=$sid&action=browse&order=completed%20desc'><img src='DownArrow.gif' alt='Sort by Done?' border='0' align='left'></a>$setfont"."Done?</th>\n";
echo "\t\t<th align='left'>$setfont"."Action</th>\n";
echo "\t\t<th align='left' colspan='2'>$setfont"."Action</th>\n";
echo "\t</tr>\n";
$bquery = "SELECT * FROM tokens_$sid";
if (!$order) {$bquery .= " ORDER BY tid";}
Expand All @@ -200,9 +200,9 @@
echo "\t\t<td>$setfont$brow[$i]</td>\n";
}
echo "\t\t<td align='left'>\n";
echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='E' title='Edit' onClick=\"window.open('$PHP_SELF?sid=$sid&action=edit&tid=$brow[0]', '_top')\" />\n";
echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='D' title='Delete' onClick=\"window.open('$PHP_SELF?sid=$sid&action=delete&tid=$brow[0]', '_top')\" />\n";
if ($brow['completed'] != "Y" && $brow['token']) {echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='S' title='Do Survey' onClick=\"window.open('$publicurl/index.php?sid=$sid&token={$brow['token']}', '_blank')\" />\n";}
echo "\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='E' title='Edit' onClick=\"window.open('$PHP_SELF?sid=$sid&action=edit&tid=$brow[0]', '_top')\" />";
echo "<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='D' title='Delete' onClick=\"window.open('$PHP_SELF?sid=$sid&action=delete&tid=$brow[0]', '_top')\" />";
if ($brow['completed'] != "Y" && $brow['token']) {echo "<input style='height: 16; width: 16px; font-size: 8; font-face: verdana' type='submit' value='S' title='Do Survey' onClick=\"window.open('$publicurl/index.php?sid=$sid&token={$brow['token']}', '_blank')\" />\n";}
echo "\n\t\t</td>\n";
if ($brow['completed'] == "Y" && $surveyprivate == "N")
{
Expand Down

0 comments on commit 77f841e

Please sign in to comment.