Skip to content

Commit

Permalink
removed bad newlines (\r\r\n) which caused double-spacing in PHP source
Browse files Browse the repository at this point in the history
  • Loading branch information
gbateson committed Nov 24, 2005
1 parent 64b4e0f commit 02aff07
Show file tree
Hide file tree
Showing 2 changed files with 478 additions and 478 deletions.
50 changes: 25 additions & 25 deletions mod/hotpot/config.html
@@ -1,25 +1,25 @@
<form method="post" action="module.php" name="form">
<INPUT type="hidden" name="sesskey" value="<?PHP print isset($USER->sesskey) ? $USER->sesskey : '' ?>">

<TABLE cellpadding="9" cellspacing="0">
<TR valign="top">
<TD align="right"><P>hotpot_showtimes:</TD>
<TD><?PHP
unset($choices);
$choices["0"] = get_string("no");
$choices["1"] = get_string("yes");
choose_from_menu ($choices, "hotpot_showtimes", $CFG->hotpot_showtimes, "");
?></TD>
<TD><?PHP print_string("configshowtimes", "hotpot") ?></TD>
</TR>
<TR valign=top>
<TD align="right"><P>hotpot_excelencodings:</TD>
<TD><INPUT name=hotpot_excelencodings type=text size=30 value="<?PHP p($CFG->hotpot_excelencodings) ?>"></TD>
<TD><?PHP print_string("configexcelencodings", "hotpot") ?></TD>
</TR>
<TR>
<TD colspan="3" align="center"><INPUT type="submit" value="<?PHP print_string("savechanges") ?>"></TD>
</TR>
</TABLE>

</FORM>
<form method="post" action="module.php" name="form">
<INPUT type="hidden" name="sesskey" value="<?PHP print isset($USER->sesskey) ? $USER->sesskey : '' ?>">

<TABLE cellpadding="9" cellspacing="0">
<TR valign="top">
<TD align="right"><P>hotpot_showtimes:</TD>
<TD><?PHP
unset($choices);
$choices["0"] = get_string("no");
$choices["1"] = get_string("yes");
choose_from_menu ($choices, "hotpot_showtimes", $CFG->hotpot_showtimes, "");
?></TD>
<TD><?PHP print_string("configshowtimes", "hotpot") ?></TD>
</TR>
<TR valign=top>
<TD align="right"><P>hotpot_excelencodings:</TD>
<TD><INPUT name=hotpot_excelencodings type=text size=30 value="<?PHP p($CFG->hotpot_excelencodings) ?>"></TD>
<TD><?PHP print_string("configexcelencodings", "hotpot") ?></TD>
</TR>
<TR>
<TD colspan="3" align="center"><INPUT type="submit" value="<?PHP print_string("savechanges") ?>"></TD>
</TR>
</TABLE>

</FORM>

0 comments on commit 02aff07

Please sign in to comment.