mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 16:36:37 +02:00
Merge branch 'MDL-26158'
This commit is contained in:
commit
299a3e7081
3 changed files with 16 additions and 17 deletions
|
@ -527,7 +527,11 @@ function message_print_search($advancedsearch = false, $user1=null) {
|
|||
|
||||
$doingsearch = false;
|
||||
if ($frm) {
|
||||
if (confirm_sesskey()) {
|
||||
$doingsearch = !empty($frm->combinedsubmit) || !empty($frm->keywords) || (!empty($frm->personsubmit) and !empty($frm->name));
|
||||
} else {
|
||||
$frm = false;
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($frm->combinedsearch)) {
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
<table cellpadding="5" class="message_form">
|
||||
<tr>
|
||||
<td colspan="3" class="message_heading mdl-left">
|
||||
<input type="text" name="combinedsearch" size="40" id="combinedsearch" value="<?php echo $combinedsearchstring; ?>" />
|
||||
<input type="hidden" name="sesskey" value="<?php p(sesskey()); ?>" />
|
||||
<input type="text" name="combinedsearch" size="40" id="combinedsearch" value="<?php p($combinedsearchstring); ?>" />
|
||||
<input type="submit" name="combinedsubmit" value="<?php print_string('searchcombined','message') ?>" />
|
||||
<a href="index.php?usergroup=<?php echo VIEW_SEARCH ?>&advanced=1" id="advancedcontactsearchlink"><?php print_string('advanced') ?></a>
|
||||
</td>
|
||||
|
|
|
@ -9,13 +9,15 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><label for="name"><?php print_string('name') ?></label></td>
|
||||
<td><input type="text" name="name" size="40" id="name" value="<? echo $personsearch ?>" /></td>
|
||||
<td><input type="text" name="name" size="40" id="name" value="<?php p($personsearch) ?>" /></td>
|
||||
<td><input type="submit" name="personsubmit" value="<?php print_string('searchforperson','message') ?>" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td colspan="2">
|
||||
<input type="checkbox" name="mycourses" id="mycourses" /><label for="mycourses"><?php print_string('onlymycourses', 'message') ?></label></td>
|
||||
<input type="checkbox" name="mycourses" id="mycourses" /><label for="mycourses"><?php print_string('onlymycourses', 'message') ?></label>
|
||||
<input type="hidden" name="sesskey" value="<?php p(sesskey()); ?>" />
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr><td colspan="3"></td></tr>
|
||||
|
@ -26,7 +28,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><label for="keywords"><?php print_string('keywords', 'message') ?></label></td>
|
||||
<td><input type="text" name="keywords" id="keywords" size="40" value="<? echo $messagesearch ?>" /></td>
|
||||
<td><input type="text" name="keywords" id="keywords" size="40" value="<?php p($messagesearch) ?>" /></td>
|
||||
<td><input type="submit" name="keywordssubmit" value="<?php print_string('searchmessages','message') ?>" /></td>
|
||||
</tr>
|
||||
|
||||
|
@ -44,14 +46,6 @@
|
|||
<tr><td> </td><td colspan="2"><input type="radio" name="keywordsoption" id="keywordsoption4" value="allusers" /><label for="keywordsoption4"><?php print_string('allusers', 'message') ?></label></td></tr>
|
||||
<?php } ?>
|
||||
|
||||
<?php
|
||||
/* Potential abuse problems - temporarily disabled
|
||||
echo '<tr><td colspan="3"><input type="radio" name="keywordsoption" alt="'.get_string('allstudents', 'message').'" value="courseusers" />'.get_string('allstudents', 'message').'<br /> '.$cs.'; </td></tr>';
|
||||
|
||||
*/
|
||||
|
||||
?>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue