Skip to content

Commit

Permalink
MDL-19817 Upgraded calls to link_to_popup_window()
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasconnault committed Aug 20, 2009
1 parent ca4b4f8 commit b6617dc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mod/wiki/revertpages.html
Expand Up @@ -19,7 +19,7 @@
<div class="boxaligncenter">
<?php
if($err->remark) {
formerr($err->remark);
echo $OUTPUT->error_text($err->remark);
}
?>
<table cellpadding="5">
Expand All @@ -29,15 +29,15 @@
<input type="text" name="authorfieldpattern" size="30" value="<?php p($form->authorfieldpattern) ?>" />
<?php
echo $OUTPUT->help_icon(moodle_help_icon::make('revertauthorfieldpattern', get_string('authorfieldpattern', 'wiki'), 'wiki'));
if (!empty($err->authorfieldpattern)) { formerr($err->authorfieldpattern); }
if (!empty($err->authorfieldpattern)) { echo $OUTPUT->error_text($err->authorfieldpattern); }
?>
</td>
</tr>
<tr valign="top">
<td align="right"><p><b><?php print_string('changesfield','wiki') ?>:</b></p></td>
<td>
<input type="text" name="changesfield" size="30" value="<?php p($form->changesfield) ?>" />
<?php if (!empty($err->changesfield)) { formerr($err->changesfield); } ?>
<?php if (!empty($err->changesfield)) { echo $OUTPUT->error_text($err->changesfield); } ?>
</td>
</tr>
<tr valign="top">
Expand All @@ -55,7 +55,7 @@
<td align="right"><p><b><?php print_string('deleteversions','wiki') ?>:</b></p></td>
<td>
<input type="text" name="deleteversions" size="2" value="<?php p($form->deleteversions) ?>" />
<?php if (!empty($err->deleteversions)) { formerr($err->deleteversions); } ?>
<?php if (!empty($err->deleteversions)) { echo $OUTPUT->error_text($err->deleteversions); } ?>
</td>
</tr>
</table>
Expand Down

0 comments on commit b6617dc

Please sign in to comment.