buddypress/0.3.6/bp-xprofile/bp-xprofile-ajax.php
Andy Peatling d9d734f99a tagging 0.3.6 xprofile
git-svn-id: https://buddypress.svn.wordpress.org/tags/extended-profiles@299 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
2008-08-18 21:15:05 +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' );
?>