how to disable WordPress flash up-loader?

function disable_flash_uploader() {
    return false;
}

add_filter( 'flash_uploader', 'disable_flash_uploader', 1 );

Or disable/uninstall the plug in

tech