Skip to content

Commit

Permalink
Fixed bug #857 Tokens: "R"-Button is not correctly aligned in Firefox
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2806 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Apr 27, 2007
1 parent d1f7c2c commit a2b43b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/tokens.php
Expand Up @@ -334,7 +334,7 @@
{
$tokenoutput .= "\t\t\t<a href=\"#\" onclick=\"window.open('$scriptname?action=tokens&amp;sid=$surveyid&amp;subaction=export', '_top')\" onmouseout=\"hideTooltip()\"" .
"onmouseover=\"showTooltip(event,'".$clang->gT("Export Tokens to CSV file", "js")."');return false\">".
"<img name='ExportButton' src='$imagefiles/exportcsv.png' align='left' /></a>\n";
"<img name='ExportButton' src='$imagefiles/exportcsv.png' align='left' alt='".$clang->gT("Export Tokens to CSV file")."' /></a>\n";
}
if ($sumrows5['edit_survey_property'] || $sumrows5['activate_survey'])
{
Expand Down Expand Up @@ -655,7 +655,7 @@
elseif ($brow['completed'] == "N" && $brow['token'] && $brow['sent'] == "N")

{
$tokenoutput .= "\t\t<td align='center' valign='top'>\n"
$tokenoutput .= "\t\t<td align='center' valign='middle'>\n"
."\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-family: verdana' type='submit' value='I' title='"
.$clang->gT("Send invitation email to this entry")."' onclick=\"window.open('{$_SERVER['PHP_SELF']}?action=tokens&amp;sid=$surveyid&amp;subaction=email&amp;tid=".$brow['tid']."', '_top')\" />"
."\t\t</td>\n";
Expand All @@ -664,7 +664,7 @@
elseif ($brow['completed'] == "N" && $brow['token'] && $brow['sent'] != "N")

{
$tokenoutput .= "\t\t<td align='center' valign='top'>\n"
$tokenoutput .= "\t\t<td align='center' valign='middle'>\n"
."\t\t\t<input style='height: 16; width: 16px; font-size: 8; font-family: verdana' type='submit' value='R' title='"
.$clang->gT("Send reminder email to this entry")."' onclick=\"window.open('{$_SERVER['PHP_SELF']}?sid=$surveyid&amp;action=tokens&amp;subaction=remind&amp;tid=".$brow['tid']."', '_top')\" />"
."\t\t</td>\n";
Expand Down

0 comments on commit a2b43b7

Please sign in to comment.