Gazelle/sections/ajax/userhistory/index.php
2012-07-28 08:00:17 +00:00

21 lines
381 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')
);
}
?>