Skip to content

Commit

Permalink
Change name of option from Mail default to Mail notification, fix bug
Browse files Browse the repository at this point in the history
#1929. First stage XHTML conformance.
  • Loading branch information
rkingdon committed Sep 10, 2004
1 parent df08420 commit 414f3a1
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions mod/dialogue/mod.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@

<form name="form" method="post" action="mod.php">
<table cellpadding=5>
<tr valign=top>
<td align=right><p><b><?php print_string("dialoguename", "dialogue") ?>:</b></p></td>
<tr valign="top">
<td align="right"><p><b><?php print_string("dialoguename", "dialogue") ?>:</b></p></td>
<td>
<input type="text" name="name" size=30 value="<?php p($form->name) ?>">
<input type="text" name="name" size="30" value="<?php p($form->name) ?>" />
</td>
</tr>
<tr valign=top>
<td align=right><p><b><?php print_string("dialogueintro", "dialogue") ?>:</b></p>
<font SIZE="1">
<tr valign="top">
<td align="right"><p><b><?php print_string("dialogueintro", "dialogue") ?>:</b></p>
<font size="1">
<?php
helpbutton("writing", get_string("helpwriting"), "moodle", true, true);
echo "<br />";
Expand All @@ -39,13 +39,13 @@
<br />
</font>

</TD>
</td>
<td>
<?php print_textarea($usehtmleditor, 20, 50, 680, 400, "intro", $form->intro); ?>
</td>
</tr>
<tr valign=top>
<td align=right><p><b><?php print_string("deleteafter", "dialogue") ?>:</b></p></td>
<tr valign="top">
<td align="right"><p><b><?php print_string("deleteafter", "dialogue") ?>:</b></p></td>
<td>
<?php
require("$CFG->dirroot/mod/dialogue/lib.php");
Expand All @@ -56,7 +56,7 @@
</tr>

<tr>
<td align=right><P><B><?php print_string("typeofdialogue", "dialogue") ?>:</B></P></TD>
<td align="right"><p><b><?php print_string("typeofdialogue", "dialogue") ?>:</b></p></td>
<td>
<?php
$options[0] = get_string("teachertostudent", "dialogue");
Expand All @@ -69,7 +69,7 @@
</tr>

<tr>
<td align=right><P><B><?php print_string("allowmultiple", "dialogue") ?>:</B></P></TD>
<td align="right"><p><b><?php print_string("allowmultiple", "dialogue") ?>:</b></p></td>
<td>
<?php
unset($options);
Expand All @@ -81,28 +81,28 @@
</tr>

<tr>
<td align=right><P><B><?php print_string("maildefault", "dialogue") ?>:</B></P></TD>
<td align="right"><p><b><?php print_string("mailnotification", "dialogue") ?>:</b></p></td>
<td>
<?php
unset($options);
$options[0] = get_string("no"); $options[1] = get_string("yes");
choose_from_menu($options, "maildefault", $form->maildefault, "");
helpbutton("maildefault", get_string("maildefault", "dialogue"), "dialogue");
helpbutton("maildefault", get_string("mailnotification", "dialogue"), "dialogue");
?>
</td>
</tr>


</table>
<center>
<input type="hidden" name=course value="<?php p($form->course) ?>">
<input type="hidden" name=coursemodule value="<?php p($form->coursemodule) ?>">
<input type="hidden" name=section value="<?php p($form->section) ?>">
<input type="hidden" name=module value="<?php p($form->module) ?>">
<input type="hidden" name=modulename value="<?php p($form->modulename) ?>">
<input type="hidden" name=instance value="<?php p($form->instance) ?>">
<input type="hidden" name=mode value="<?php p($form->mode) ?>">
<input type="submit" value="<?php print_string("savechanges") ?>">
<input type="submit" name=cancel value="<?php print_string("cancel") ?>">
</form>
<input type="hidden" name="course" value="<?php p($form->course) ?>"/>
<input type="hidden" name="coursemodule" value="<?php p($form->coursemodule) ?>"/>
<input type="hidden" name="section" value="<?php p($form->section) ?>"/>
<input type="hidden" name="module" value="<?php p($form->module) ?>"/>
<input type="hidden" name="modulename" value="<?php p($form->modulename) ?>"/>
<input type="hidden" name="instance" value="<?php p($form->instance) ?>"/>
<input type="hidden" name="mode" value="<?php p($form->mode) ?>"/>
<input type="submit" value="<?php print_string("savechanges") ?>"/>
<input type="submit" name="cancel" value="<?php print_string("cancel") ?>">
</center>
</form>

0 comments on commit 414f3a1

Please sign in to comment.