Skip to content

Commit

Permalink
MDL-57432 environment: raise Moodle 3.4 requirements
Browse files Browse the repository at this point in the history
1) PHP minimum version raised to 7.0.0
2) Intl extension raised from optional to required
  • Loading branch information
danpoltawski committed Jul 10, 2017
1 parent cc41761 commit 342c161
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions admin/environment.xml
Expand Up @@ -2094,7 +2094,7 @@
<VENDOR name="mssql" version="10.0" />
<VENDOR name="oracle" version="10.2" />
</DATABASE>
<PHP version="5.6.5" level="required">
<PHP version="7.0.0" level="required">
</PHP>
<PCREUNICODE level="optional">
<FEEDBACK>
Expand Down Expand Up @@ -2172,9 +2172,9 @@
</PHP_EXTENSION>
<PHP_EXTENSION name="xmlreader" level="required">
</PHP_EXTENSION>
<PHP_EXTENSION name="intl" level="optional">
<PHP_EXTENSION name="intl" level="required">
<FEEDBACK>
<ON_CHECK message="intlrecommended" />
<ON_ERROR message="intlrequired" />
</FEEDBACK>
</PHP_EXTENSION>
<PHP_EXTENSION name="json" level="required">
Expand Down
1 change: 1 addition & 0 deletions lang/en/admin.php
Expand Up @@ -610,6 +610,7 @@
$string['installhijacked'] = 'Installation must be finished from the original IP address, sorry.';
$string['installsessionerror'] = 'Can not initialise PHP session, please verify that your browser accepts cookies.';
$string['intlrecommended'] = 'Intl extension is used to improve internationalization support, such as locale aware sorting.';
$string['intlrequired'] = 'Intl extension is required to improve internationalization support, such as locale aware sorting and international domain names.';
$string['invalidsection'] = 'Invalid section.';
$string['invaliduserchangeme'] = 'Username "changeme" is reserved -- you cannot create an account with it.';
$string['ipblocked'] = 'This site is not available currently.';
Expand Down

0 comments on commit 342c161

Please sign in to comment.