blob: a0837caa183bccdf7d37e1884fef91f5c5f99fe0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 | <?php
/**
 * Elgg page handler
 *
 * @package Elgg
 * @subpackage Core
 * @author Curverider Ltd
 * @link http://elgg.org/
 */
// Load Elgg engine
// define('externalpage',true);
require_once("../start.php");
// Get input
$handler = get_input('handler');
$page = get_input('page');
// Call the page handler functions
if (!page_handler($handler, $page)) {
	forward();
}
 |