You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

status.php 333B

12345678910111213141516171819202122232425
  1. <?php
  2. require_once "utils.php";
  3. function check_token()
  4. {
  5. if (!check_table_field("Authorization", "tokens", "token"))
  6. error(401, "Invalid token");
  7. }
  8. function status_confirm($id)
  9. {
  10. check_token();
  11. }
  12. function status_create()
  13. {
  14. check_token();
  15. $status = get_post("status");
  16. }
  17. function status_feed()
  18. {
  19. check_token();
  20. }
  21. ?>