Skip to content

Commit 0da0421

Browse files
[auto-generated] Update plugin files
Check out the commits that caused these changes: moodlehq/moodleapp@55c083d...6553d20
1 parent a82f4c5 commit 0da0421

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

tests/behat/behat_app.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,10 @@ public function i_close_the_popup_in_the_app() {
599599
*/
600600
public function the_app_has_the_following_config(TableNode $data) {
601601
foreach ($data->getRows() as $configrow) {
602-
$this->appconfig[$configrow[0]] = json_decode($configrow[1]);
602+
$name = $configrow[0];
603+
$value = $this->replace_wwwroot($configrow[1]);
604+
605+
$this->appconfig[$name] = json_decode($value);
603606
}
604607
}
605608

tests/behat/behat_app_helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ protected function prepare_browser(array $options = []) {
242242
// Assert initial page.
243243
$this->spin(function($context) {
244244
$page = $context->getSession()->getPage();
245-
$element = $page->find('xpath', '//page-core-login-site//input[@name="url"]');
245+
$element = $page->find('xpath', '//page-core-login-site');
246246

247247
if ($element) {
248248
// Login screen found.

version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
defined('MOODLE_INTERNAL') || die;
88

9-
$plugin->version = 2024041100;
9+
$plugin->version = 2024041700;
1010
$plugin->requires = 2016052300;
1111
$plugin->maturity = MATURITY_STABLE;
1212
$plugin->release = '4.4.0';

0 commit comments

Comments
 (0)