Skip to content

Commit

Permalink
Tweak: Fixed bug, moved </table> outside data loop. Also reduced font…
Browse files Browse the repository at this point in the history
… size for option links

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@67 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 18, 2003
1 parent fdbeca5 commit e493c8a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions admin/tokens.php
Expand Up @@ -107,8 +107,9 @@
// IF WE MADE IT THIS FAR, THEN THERE IS A TOKENS TABLE, SO LETS DEVELOP THE MENU ITEMS

$tokenmenu = "\t<tr>\n";
$tokenmenu .= "\t\t<td bgcolor='#EEEEEE' colspan='2' align='center' style='border-top-style: solid; border-top-width: 1; border-top-color:#BBBBBB; border-left-color:#BBBBBB; border-left-width:1; border-left-style:solid; border-right-style: solid; border-right-width:1; border-right-color:#BBBBBB'>\n";
$tokenmenu .= "\t\t\t[<a href='admin.php?sid=$sid'>admin</a>] \n";
$tokenmenu .= "\t\t<td bgcolor='#EEEEEE' colspan='2' align='center' ";
$tokenmenu .= "style='border-top-style: solid; border-top-width: 1; border-top-color:#BBBBBB; border-left-color:#BBBBBB; border-left-width:1; border-left-style:solid; border-right-style: solid; border-right-width:1; border-right-color:#BBBBBB'>\n";
$tokenmenu .= "\t\t\t<font size='2'>[<a href='admin.php?sid=$sid'>admin</a>] \n";
$tokenmenu .= "\t\t\t[<a href='tokens.php?sid=$sid&action=browse'>browse</a>] \n";
$tokenmenu .= "\t\t\t[<a href='tokens.php?sid=$sid&action=add'>add</a>] \n";
$tokenmenu .= "\t\t\t[<a href='tokens.php?sid=$sid&action=import'>import</a>] \n";
Expand Down Expand Up @@ -180,8 +181,8 @@
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";
echo "\t\t</td>\n";
echo "\t</tr>\n";
echo "</table>\n";
}
echo "</table>\n";
}

if ($action == "kill")
Expand Down

0 comments on commit e493c8a

Please sign in to comment.