Skip to content

Commit

Permalink
Merge branch 'MDL-74493-master' of https://github.com/snake/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
junpataleta committed Apr 14, 2022
2 parents 821ec66 + 19a296d commit 80709ba
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions admin/index.php
Expand Up @@ -53,6 +53,12 @@
die();
}

// Make sure mbstring extension is available.
if (!extension_loaded('mbstring')) {
echo 'Moodle requires the mbstring PHP extension. Please install or enable the mbstring extension.';
die();
}

define('NO_OUTPUT_BUFFERING', true);

if (isset($_POST['upgradekey'])) {
Expand Down

0 comments on commit 80709ba

Please sign in to comment.