Skip to content

Commit

Permalink
MDL-10148 - hard coded lang strings in user/message.html
Browse files Browse the repository at this point in the history
  • Loading branch information
poltawski committed Jun 18, 2007
1 parent ab5642f commit 974762e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user/message.html
Expand Up @@ -46,7 +46,7 @@
</td>
</tr>

<tr><td align="center" colspan="2"><input type="submit" name="preview" value="Preview" /></td></tr>
<tr><td align="center" colspan="2"><input type="submit" name="preview" value="<?php print_string('preview'); ?>" /></td></tr>
</table>
<?php print_simple_box_end(); ?>
<table align="center"><tr><th colspan="4" scope="row"><?php print_string('currentlyselectedusers'); ?></th></tr>
Expand All @@ -69,7 +69,7 @@
echo '<img src="'.$CFG->pixpath.'/t/emailno.gif" alt="'.$error.'" title="'.$error.'"/>';
unset($error);
}
echo '</td><td><input type="submit" onClick="this.form.deluser.value='.$user->id.';" value="remove" /></td></tr>';
echo '</td><td><input type="submit" onClick="this.form.deluser.value='.$user->id.';" value="' . get_string('remove') . '" /></td></tr>';
}
}
else {
Expand Down

0 comments on commit 974762e

Please sign in to comment.