Oppaitime's version of Gazelle
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.

index.php 314B

12345678910111213141516
  1. <?
  2. enforce_login();
  3. if (!check_perms('site_upload')) {
  4. error(403);
  5. }
  6. if ($LoggedUser['DisableUpload']) {
  7. error('Your upload privileges have been revoked.');
  8. }
  9. // build the page
  10. if (!empty($_POST['submit'])) {
  11. include('upload_handle.php');
  12. } else {
  13. include(SERVER_ROOT.'/sections/upload/upload.php');
  14. }
  15. ?>