Index: export.php
===================================================================
--- export.php	(revision 15559)
+++ export.php	(working copy)
@@ -255,9 +255,10 @@
 
 		$the_list = '';
 		$filter = 'rss';
-
-		$taxonomies = get_object_taxonomies( 'post' );
-		$terms = wp_get_post_terms( $post->ID, $taxonomies );
+		
+		$taxonomies = get_object_taxonomies( $post->post_type ); 
+		$terms = wp_get_object_terms($post->ID, $taxonomies);
+		
 		foreach ( (array) $terms as $term ) {
 			$domain = ( 'post_tag' == $term->taxonomy ) ? 'tag' : $term->taxonomy;
 			$term_name = sanitize_term_field( 'name', $term->name, $term->term_id, $term->taxonomy, $filter );
