blob: 24bef4d0344b5189f7f2d23a9c4a8c8e5658cb8d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/**
* Elgg page handler
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
// Load Elgg engine
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();
}
|