Index: deprecated.php
===================================================================
--- deprecated.php	(revision 12541)
+++ deprecated.php	(working copy)
@@ -15,6 +15,7 @@
 /**
  * The name of the Posts table
  * @global string $tableposts
+ * @deprecated 1.2.0
  * @deprecated Use $wpdb->posts
  */
 $tableposts = $wpdb->posts;
@@ -22,55 +23,40 @@
 /**
  * The name of the Users table
  * @global string $tableusers
+ * @deprecated 1.2.0
  * @deprecated Use $wpdb->users
  */
 $tableusers = $wpdb->users;
 
 /**
- * The name of the Categories table
- * @global string $tablecategories
- * @deprecated Use $wpdb->categories
- */
-$tablecategories = $wpdb->categories;
-
-/**
- * The name of the post to category table
- * @global string $tablepost2cat
- * @deprecated Use $wpdb->post2cat;
- */
-$tablepost2cat = $wpdb->post2cat;
-
-/**
  * The name of the comments table
  * @global string $tablecomments
- * @deprecated Use $wpdb->comments;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->comments
  */
 $tablecomments = $wpdb->comments;
 
 /**
  * The name of the links table
  * @global string $tablelinks
- * @deprecated Use $wpdb->links;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->links
  */
 $tablelinks = $wpdb->links;
 
 /**
- * @global string $tablelinkcategories
- * @deprecated Not used anymore;
- */
-$tablelinkcategories = 'linkcategories_is_gone';
-
-/**
  * The name of the options table
  * @global string $tableoptions
- * @deprecated Use $wpdb->options;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->options
  */
 $tableoptions = $wpdb->options;
 
 /**
  * The name of the postmeta table
  * @global string $tablepostmeta
- * @deprecated Use $wpdb->postmeta;
+ * @deprecated 1.2.0
+ * @deprecated Use $wpdb->postmeta
  */
 $tablepostmeta = $wpdb->postmeta;