minor fix on notices on add/edit weblog
[elgg.git] / includes_system.php
blob121d7348349414c3adb4433d063c0d53e183da73
1 <?php
3 // ELGG system includes
5 /***************************************************************************
6 * INSERT SYSTEM UNITS HERE
7 * You should ideally not edit this file.
8 ****************************************************************************/
10 // Plug-in engine (must be loaded first)
11 require($CFG->dirroot . "units/engine/main.php");
12 // Language / internationalisation
13 //@todo All the libraries has a strong dependence with this 'plugin'
14 require_once($CFG->dirroot . "mod/gettext/lib.php");
15 // Users
16 require($CFG->dirroot . "units/users/main.php");
17 // Templates
18 require($CFG->dirroot . "units/templates/main.php");
19 // Profiles
20 include($CFG->dirroot . "units/profile/main.php");
22 // XML parsing
23 require($CFG->dirroot . "lib/xmllib.php");