mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
MDL-50919 tags: minor fixes and version bump
This fixes: - An incorrect exception message. - tablelib weird behavior creating up to pagesize empty rows. Also forces a version bump so new webservices will become installed.
This commit is contained in:
parent
544be5ad4d
commit
8a6900ff56
@ -174,7 +174,7 @@ class behat_forms extends behat_base {
|
|||||||
*/
|
*/
|
||||||
public function i_press_key_in_the_field($key, $field) {
|
public function i_press_key_in_the_field($key, $field) {
|
||||||
if (!$this->running_javascript()) {
|
if (!$this->running_javascript()) {
|
||||||
throw new DriverException('Key press step is not available with Javascript enabled');
|
throw new DriverException('Key press step is not available with Javascript disabled');
|
||||||
}
|
}
|
||||||
$fld = behat_field_manager::get_form_field_from_label($field, $this);
|
$fld = behat_field_manager::get_form_field_from_label($field, $this);
|
||||||
$modifier = null;
|
$modifier = null;
|
||||||
|
@ -119,7 +119,7 @@ class core_tag_manage_table extends table_sql {
|
|||||||
$total = $grandtotal;
|
$total = $grandtotal;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->pagesize($pagesize, $total);
|
$this->pagesize(min($pagesize, $total), $total);
|
||||||
$this->totalcount = $total;
|
$this->totalcount = $total;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -253,4 +253,4 @@ class core_tag_manage_table extends table_sql {
|
|||||||
null, array('class' => 'action-icon tagdelete'));
|
null, array('class' => 'action-icon tagdelete'));
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$version = 2015082800.00; // YYYYMMDD = weekly release date of this DEV branch.
|
$version = 2015090100.00; // YYYYMMDD = weekly release date of this DEV branch.
|
||||||
// RR = release increments - 00 in DEV branches.
|
// RR = release increments - 00 in DEV branches.
|
||||||
// .XX = incremental changes.
|
// .XX = incremental changes.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user