buddypress/1.0b1/bp-xprofile/bp-xprofile-ajax.php
Andy Peatling 35dae8e670 Tagging 1.0b1 xprofile.
git-svn-id: https://buddypress.svn.wordpress.org/tags/extended-profiles@776 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2008-12-15 23:29:31 +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' );
?>