blob: c1fe726124145166edfb36a29065d3dcddffa7de (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php global $VARS;
$t = $VARS['template'];
$t->status('400 Bad Request');
$t->header('Authentication');
$t->paragraph('The recieved POST request was malformed/invalid. '.
'If you got here from a link, this is a bug; '.
'Let the admin know.'.
'If you got here from outside, then the API is being '.
'used incorrectly.');
$t->footer();
|