Gazelle/sections/ajax/inbox/index.php
2013-04-15 08:00:54 +00:00

13 lines
319 B
PHP

<?
if (empty($_GET['type']) || $_GET['type'] == 'inbox' || $_GET['type'] == 'sentbox') {
require(SERVER_ROOT.'/sections/ajax/inbox/inbox.php');
} elseif ($_GET['type'] == 'viewconv') {
require(SERVER_ROOT.'/sections/ajax/inbox/viewconv.php');
} else {
print json_encode(array('status' => 'failure'));
die();
}
?>