diff -bu ./ultimate-tag-warrior-actions-wordpress2.php ./site/ultimate-tag-warrior-actions-wordpress2.php
--- ./ultimate-tag-warrior-actions-wordpress2.php	2005-12-07 20:57:28.000000000 +0000
+++ ./site/ultimate-tag-warrior-actions-wordpress2.php	2006-09-12 20:33:49.000000000 +0000
@@ -674,6 +674,6 @@
 add_filter('the_content', array('UltimateTagWarriorActions', 'ultimate_the_content_filter'));
 add_filter('the_category_rss', array('UltimateTagWarriorActions', 'ultimate_add_tags_to_rss'));
 
-add_filter('wp_head', array('UltimateTagWarriorActions', 'ultimate_add_ajax_javascript'));
+#add_filter('wp_head', array('UltimateTagWarriorActions', 'ultimate_add_ajax_javascript'));
 add_filter('admin_head', array('UltimateTagWarriorActions', 'ultimate_add_ajax_javascript'));
 ?>
diff -bu ./ultimate-tag-warrior-actions.php ./site/ultimate-tag-warrior-actions.php
--- ./ultimate-tag-warrior-actions.php	2006-09-20 21:27:06.000000000 +0000
+++ ./site/ultimate-tag-warrior-actions.php	2006-09-22 06:17:41.000000000 +0000
@@ -840,7 +840,7 @@
 add_filter('the_content', array('UltimateTagWarriorActions', 'ultimate_the_content_filter'));
 add_filter('the_category_rss', array('UltimateTagWarriorActions', 'ultimate_add_tags_to_rss'));
 
-add_filter('wp_head', array('UltimateTagWarriorActions', 'ultimate_add_ajax_javascript'));
+#add_filter('wp_head', array('UltimateTagWarriorActions', 'ultimate_add_ajax_javascript'));
 add_filter('wp_head', array('UltimateTagWarriorActions', 'ultimate_add_meta_keywords'));
 add_filter('admin_head', array('UltimateTagWarriorActions', 'ultimate_add_ajax_javascript'));
 ?>
diff -bu ./ultimate-tag-warrior-core.php ./site/ultimate-tag-warrior-core.php
--- ./ultimate-tag-warrior-core.php	2006-09-11 20:42:20.000000000 +0000
+++ ./site/ultimate-tag-warrior-core.php	2006-09-27 19:41:59.000000000 +0000
@@ -273,9 +273,7 @@
 
 		if (!is_numeric($postID)) return;
 
-		$default = get_option('default_category');
-
-		$categories = $wpdb->get_results("SELECT c.cat_name FROM $wpdb->post2cat p2c INNER JOIN $wpdb->categories c ON p2c.category_id = c.cat_id WHERE p2c.post_id = $postID AND c.cat_ID != $default");
+		$categories = $wpdb->get_results("SELECT c.cat_name FROM $wpdb->post2cat p2c INNER JOIN $wpdb->categories c ON p2c.category_id = c.cat_id WHERE p2c.post_id = $postID");
 		$tags = $this->GetTagsForPost($postID);
 
 		$alltags = array();
@@ -540,6 +538,10 @@
 			if ( false == $tags ) {
 				$q = "SELECT DISTINCT t.tag FROM $tabletags t INNER JOIN $tablepost2tag p2t ON p2t.tag_id = t.tag_id INNER JOIN $wpdb->posts p ON p2t.post_id = p.ID AND p.ID=$postID ORDER BY t.tag ASC $limitclause";
 				$tags = $wpdb->get_results($q);
+				if (count($tags) == 0) {
+					$tags = array( (object) array( "tag" => "DEFAULT_TAG_NAME" ) );
+					$wpdb->query( "INSERT INTO $tablepost2tag ( `rel_id` , `tag_id` , `post_id` , `ip_address` ) VALUES ( '', 'DEFAULT_TAG_ID', '{$postID}', '');" );
+				}
 				if (count($tags) > 0) {
 					add_post_meta($postID, '_utw_tags_' . $limit, $tags);
 				}
