mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 16:32:18 +02:00
Renamed mod.html to mod.php
This commit is contained in:
parent
36245854f2
commit
2622ceb494
@ -18,7 +18,7 @@
|
||||
|
||||
foreach ($directories as $directory) {
|
||||
echo '<div class="plugin">';
|
||||
include_once($CFG->dirroot.'/course/import/'.$directory.'/mod.html');
|
||||
include_once($CFG->dirroot.'/course/import/'.$directory.'/mod.php');
|
||||
echo '</div>';
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
<?php // $Id$
|
||||
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
||||
}
|
||||
|
||||
require_once($CFG->dirroot.'/course/lib.php');
|
||||
require_once($CFG->dirroot.'/backup/restorelib.php');
|
||||
|
@ -1,5 +1,9 @@
|
||||
<?php
|
||||
|
||||
if (!defined('MOODLE_INTERNAL')) {
|
||||
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
|
||||
}
|
||||
|
||||
$streditmyprofile = get_string("editmyprofile");
|
||||
$stradministration = get_string("administration");
|
||||
$strchoose = get_string("choose");
|
Loading…
x
Reference in New Issue
Block a user