buddypress/0.3.1/bp-xprofile/bp-xprofile-ajax.php
Andy Peatling 770512c39b tagging xprofile 0.3.1
git-svn-id: https://buddypress.svn.wordpress.org/tags/extended-profiles@157 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2008-06-06 21:43:33 +00:00

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' );
?>