mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-30 04:43:58 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/trunk@112 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
11 lines
No EOL
300 B
PHP
11 lines
No EOL
300 B
PHP
<?php
|
|
function xprofile_ajax_reorder_fields() {
|
|
|
|
check_ajax_referer('xprofile_reorder_fields');
|
|
|
|
// TODO change the order of the fields
|
|
//$stuff = $_REQUEST['group'], $_REQUEST['row'], $_REQUEST['field_ids'];
|
|
|
|
}
|
|
add_action( 'wp_ajax_xprofile_reorder_fields', 'xprofile_ajax_reorder_fields' );
|
|
?>
|