Gazelle/sections/ajax/userhistory/index.php
2013-04-17 08:00:58 +00:00

21 lines
285 B
PHP

<?
if ($_GET['type']) {
switch ($_GET['type']) {
case 'posts':
// Load post history page
include('post_history.php');
break;
default:
print json_encode(
array('status' => 'failure')
);
}
} else {
print json_encode(
array('status' => 'failure')
);
}
?>