> first comm 3 years ago RU.js 77628cf8bf first comm 3 years ago RW.js 77628cf8bf first comm 3 years ago SA.js 77628cf8bf first comm 3 years ago SB.js 77628cf8bf first comm 3 years ago SC.js 77628cf8bf first comm 3 years ago SD.js 77628cf8bf first comm 3 years ago SE.js 77628cf8bf first comm 3 years ago SG.js 77628cf8bf first comm 3 years ago SH.js 77628cf8bf first comm 3 years ago SI.js 77628cf8bf first comm 3 years ago SK.js 77628cf8bf first comm 3 years ago SL.js 77628cf8bf first comm 3 years ago SM.js 77628cf8bf first comm 3 years ago SN.js 77628cf8bf first comm 3 years ago SO.js 77628cf8bf first comm 3 years ago SR.js 77628cf8bf first comm 3 years ago ST.js 77628cf8bf first comm 3 years ago SV.js 77628cf8bf first comm 3 years ago SY.js 77628cf8bf first comm 3 years ago SZ.js 77628cf8bf first comm 3 years ago TC.js 77628cf8bf first comm 3 years ago TD.js 77628cf8bf first comm 3 years ago TG.js 77628cf8bf first comm 3 years ago TH.js 77628cf8bf first comm 3 years ago TJ.js 77628cf8bf first comm 3 years ago TK.js 77628cf8bf first comm 3 years ago TL.js 77628cf8bf first comm 3 years ago TM.js 77628cf8bf first comm 3 years ago TN.js 77628cf8bf first comm 3 years ago TO.js 77628cf8bf first comm 3 years ago TR.js 77628cf8bf first comm 3 years ago TT.js 77628cf8bf first comm 3 years ago TV.js 77628cf8bf first comm 3 years ago TW.js 77628cf8bf first comm 3 years ago TZ.js 77628cf8bf first comm 3 years ago UA.js 77628cf8bf first comm 3 years ago UG.js 77628cf8bf first comm 3 years ago US.js 77628cf8bf first comm 3 years ago UY.js 77628cf8bf first comm 3 years ago UZ.js 77628cf8bf first comm 3 years ago VA.js 77628cf8bf first comm 3 years ago VC.js 77628cf8bf first comm 3 years ago VE.js 77628cf8bf first comm 3 years ago VG.js 77628cf8bf first comm 3 years ago VI.js 77628cf8bf first comm 3 years ago VN.js 77628cf8bf first comm 3 years ago VU.js 77628cf8bf first comm 3 years ago WF.js 77628cf8bf first comm 3 years ago WS.js 77628cf8bf first comm 3 years ago YE.js 77628cf8bf first comm 3 years ago YT.js 77628cf8bf first comm 3 years ago ZA.js 77628cf8bf first comm 3 years ago ZM.js 77628cf8bf first comm 3 years ago ZW.js 77628cf8bf first comm 3 years ago alt-af.js 77628cf8bf first comm 3 years ago alt-an.js 77628cf8bf first comm 3 years ago alt-as.js 77628cf8bf first comm 3 years ago alt-eu.js 77628cf8bf first comm 3 years ago alt-na.js 77628cf8bf first comm 3 years ago alt-oc.js 77628cf8bf first comm 3 years ago alt-sa.js 77628cf8bf first comm 3 years ago alt-ww.js 77628cf8bf first comm 3 years ago tum/whitesports - Gogs: Simplico Git Service

Brak opisu

edit.php 908B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * Action handler for Multisite administration panels.
  4. *
  5. * @package WordPress
  6. * @subpackage Multisite
  7. * @since 3.0.0
  8. */
  9. /** Load WordPress Administration Bootstrap */
  10. require_once __DIR__ . '/admin.php';
  11. $action = ( isset( $_GET['action'] ) ) ? $_GET['action'] : '';
  12. if ( empty( $action ) ) {
  13. wp_redirect( network_admin_url() );
  14. exit;
  15. }
  16. /**
  17. * Fires just before the action handler in several Network Admin screens.
  18. *
  19. * This hook fires on multiple screens in the Multisite Network Admin,
  20. * including Users, Network Settings, and Site Settings.
  21. *
  22. * @since 3.0.0
  23. */
  24. do_action( 'wpmuadminedit' );
  25. /**
  26. * Fires the requested handler action.
  27. *
  28. * The dynamic portion of the hook name, `$action`, refers to the name
  29. * of the requested action derived from the `GET` request.
  30. *
  31. * @since 3.1.0
  32. */
  33. do_action( "network_admin_edit_{$action}" );
  34. wp_redirect( network_admin_url() );
  35. exit;