Skip to content

Commit bd5fa9b

Browse files
authored
Merge pull request #1181 from gbarat87/patch-1
fix #1180 Update index.md $plugin->incompatible
2 parents 1a2561b + 8dd971a commit bd5fa9b

File tree

5 files changed

+8
-8
lines changed
  • docs/apis/commonfiles/version.php
  • versioned_docs
    • version-4.1/apis/commonfiles/version.php
    • version-4.3/apis/commonfiles/version.php
    • version-4.4/apis/commonfiles/version.php
    • version-4.5/apis/commonfiles/version.php

5 files changed

+8
-8
lines changed

docs/apis/commonfiles/version.php/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags:
77
description: A description of the plugin version.php file, describing the various features
88
---
99

10-
import { LanguageProperty, } from '@site/src/components';
10+
import { LanguageProperty } from '@site/src/components';
1111

1212
Every plugin must have a `version.php` file located in the root directory of that plugin.
1313

@@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
194194
$plugin->version = 2022060100;
195195
$plugin->requires = 2022041900.00; // Moodle 4.0.
196196
$plugin->supported = [400, 400];
197-
$plugin->incompatible = [401];
197+
$plugin->incompatible = 401;
198198
$plugin->component = 'tool_example';
199199
$plugin->maturity = MATURITY_STABLE;
200200
$plugin->release = '41.3-lemmings-1.0';

versioned_docs/version-4.1/apis/commonfiles/version.php/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
194194
$plugin->version = 2022060100;
195195
$plugin->requires = 2022041900.00; // Moodle 4.0.
196196
$plugin->supported = [400, 400];
197-
$plugin->incompatible = [401];
197+
$plugin->incompatible = 401;
198198
$plugin->component = 'tool_example';
199199
$plugin->maturity = MATURITY_STABLE;
200200
$plugin->release = '41.3-lemmings-1.0';

versioned_docs/version-4.3/apis/commonfiles/version.php/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
194194
$plugin->version = 2022060100;
195195
$plugin->requires = 2022041900.00; // Moodle 4.0.
196196
$plugin->supported = [400, 400];
197-
$plugin->incompatible = [401];
197+
$plugin->incompatible = 401;
198198
$plugin->component = 'tool_example';
199199
$plugin->maturity = MATURITY_STABLE;
200200
$plugin->release = '41.3-lemmings-1.0';

versioned_docs/version-4.4/apis/commonfiles/version.php/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags:
77
description: A description of the plugin version.php file, describing the various features
88
---
99

10-
import { LanguageProperty, } from '@site/src/components';
10+
import { LanguageProperty } from '@site/src/components';
1111

1212
Every plugin must have a `version.php` file located in the root directory of that plugin.
1313

@@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
194194
$plugin->version = 2022060100;
195195
$plugin->requires = 2022041900.00; // Moodle 4.0.
196196
$plugin->supported = [400, 400];
197-
$plugin->incompatible = [401];
197+
$plugin->incompatible = 401;
198198
$plugin->component = 'tool_example';
199199
$plugin->maturity = MATURITY_STABLE;
200200
$plugin->release = '41.3-lemmings-1.0';

versioned_docs/version-4.5/apis/commonfiles/version.php/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ tags:
77
description: A description of the plugin version.php file, describing the various features
88
---
99

10-
import { LanguageProperty, } from '@site/src/components';
10+
import { LanguageProperty } from '@site/src/components';
1111

1212
Every plugin must have a `version.php` file located in the root directory of that plugin.
1313

@@ -194,7 +194,7 @@ defined('MOODLE_INTERNAL') || die();
194194
$plugin->version = 2022060100;
195195
$plugin->requires = 2022041900.00; // Moodle 4.0.
196196
$plugin->supported = [400, 400];
197-
$plugin->incompatible = [401];
197+
$plugin->incompatible = 401;
198198
$plugin->component = 'tool_example';
199199
$plugin->maturity = MATURITY_STABLE;
200200
$plugin->release = '41.3-lemmings-1.0';

0 commit comments

Comments
 (0)