mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 00:46:50 +02:00
Merge branch 'MDL-30843_b' of git://github.com/rwijaya/moodle
This commit is contained in:
commit
5bfeb5ffd3
108 changed files with 390 additions and 216 deletions
|
@ -66,7 +66,7 @@ for($i = 1; $i < 3; $i++){
|
|||
?>
|
||||
<tr valign="top">
|
||||
<td align="right">
|
||||
<?php print_string('numsections'.$i, 'block_section_links'); ?>:
|
||||
<label for="menunumsections<?php echo $i; ?>"><?php print_string('numsections'.$i, 'block_section_links'); ?>:</label>
|
||||
</td>
|
||||
<td>
|
||||
<?php choose_from_menu($numberofsections, 'numsections'.$i, $selected[$i][0]); ?>
|
||||
|
@ -77,7 +77,7 @@ for($i = 1; $i < 3; $i++){
|
|||
</tr>
|
||||
<tr valign="top">
|
||||
<td align="right">
|
||||
<?php print_string('incby'.$i, 'block_section_links'); ?>:
|
||||
<label for="menuincby<?php echo $i;?>"><?php print_string('incby'.$i, 'block_section_links'); ?>:</label>
|
||||
</td>
|
||||
<td>
|
||||
<?php choose_from_menu($increments, 'incby'.$i, $selected[$i][1]); ?>
|
||||
|
|
|
@ -225,7 +225,6 @@ class block_tags extends block_base {
|
|||
if ($officialtags) { $this->content->text .= $officialtagscontent; }
|
||||
if ($coursetags) { $this->content->text .= $coursetagscontent; }
|
||||
if ($commtags) { $this->content->text .= $commtagscontent; }
|
||||
|
||||
// add the input form section (allowing a user to tag the current course) and navigation, or loggin message
|
||||
if ($loggedin) {
|
||||
// only show the input form on course pages for those allowed (or not barred)
|
||||
|
@ -250,7 +249,8 @@ class block_tags extends block_base {
|
|||
<div class="coursetag_form_wrapper">
|
||||
<div class="coursetag_form_positioner">
|
||||
<div class="coursetag_form_input1">
|
||||
<input type="text" name="coursetag_sug_keyword" class="coursetag_form_input1a" disabled="disabled" />
|
||||
<label class="accesshide" for="coursetag_sug_keyword">$tagthisunit</label>
|
||||
<input type="text" name="coursetag_sug_keyword" id="coursetag_sug_keyword" class="coursetag_form_input1a" disabled="disabled" />
|
||||
</div>
|
||||
<div class="coursetag_form_input2">
|
||||
<input type="text" name="coursetag_new_tag" id="coursetag_new_tag" class="coursetag_form_input2a"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue