Ticket #11614: 11614-scalpel.diff
File 11614-scalpel.diff, 1.8 KB (added by , 11 years ago) |
---|
-
deprecated.php
15 15 /** 16 16 * The name of the Posts table 17 17 * @global string $tableposts 18 * @deprecated 1.2.0 18 19 * @deprecated Use $wpdb->posts 19 20 */ 20 21 $tableposts = $wpdb->posts; … … 22 23 /** 23 24 * The name of the Users table 24 25 * @global string $tableusers 26 * @deprecated 1.2.0 25 27 * @deprecated Use $wpdb->users 26 28 */ 27 29 $tableusers = $wpdb->users; 28 30 29 31 /** 30 * The name of the Categories table31 * @global string $tablecategories32 * @deprecated Use $wpdb->categories33 */34 $tablecategories = $wpdb->categories;35 36 /**37 * The name of the post to category table38 * @global string $tablepost2cat39 * @deprecated Use $wpdb->post2cat;40 */41 $tablepost2cat = $wpdb->post2cat;42 43 /**44 32 * The name of the comments table 45 33 * @global string $tablecomments 46 * @deprecated Use $wpdb->comments; 34 * @deprecated 1.2.0 35 * @deprecated Use $wpdb->comments 47 36 */ 48 37 $tablecomments = $wpdb->comments; 49 38 50 39 /** 51 40 * The name of the links table 52 41 * @global string $tablelinks 53 * @deprecated Use $wpdb->links; 42 * @deprecated 1.2.0 43 * @deprecated Use $wpdb->links 54 44 */ 55 45 $tablelinks = $wpdb->links; 56 46 57 47 /** 58 * @global string $tablelinkcategories59 * @deprecated Not used anymore;60 */61 $tablelinkcategories = 'linkcategories_is_gone';62 63 /**64 48 * The name of the options table 65 49 * @global string $tableoptions 66 * @deprecated Use $wpdb->options; 50 * @deprecated 1.2.0 51 * @deprecated Use $wpdb->options 67 52 */ 68 53 $tableoptions = $wpdb->options; 69 54 70 55 /** 71 56 * The name of the postmeta table 72 57 * @global string $tablepostmeta 73 * @deprecated Use $wpdb->postmeta; 58 * @deprecated 1.2.0 59 * @deprecated Use $wpdb->postmeta 74 60 */ 75 61 $tablepostmeta = $wpdb->postmeta;