mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
First pass commentmeta implementation. See #2659 props scribu.
git-svn-id: https://develop.svn.wordpress.org/trunk@11943 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
+10
-1
@@ -208,6 +208,15 @@ class wpdb {
|
||||
*/
|
||||
var $postmeta;
|
||||
|
||||
/**
|
||||
* WordPress Comment Metadata table
|
||||
*
|
||||
* @since 2.9
|
||||
* @access public
|
||||
* @var string
|
||||
*/
|
||||
var $commentmeta;
|
||||
|
||||
/**
|
||||
* WordPress User Metadata table
|
||||
*
|
||||
@@ -252,7 +261,7 @@ class wpdb {
|
||||
* @var array
|
||||
*/
|
||||
var $tables = array('users', 'usermeta', 'posts', 'categories', 'post2cat', 'comments', 'links', 'link2cat', 'options',
|
||||
'postmeta', 'terms', 'term_taxonomy', 'term_relationships');
|
||||
'postmeta', 'terms', 'term_taxonomy', 'term_relationships', 'commentmeta');
|
||||
|
||||
/**
|
||||
* List of deprecated WordPress tables
|
||||
|
||||
Reference in New Issue
Block a user