Changeset 4832
- Timestamp:
- 01/30/2007 01:46:05 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
wp-admin/edit-form-advanced.php (modified) (1 diff)
-
wp-admin/upgrade-schema.php (modified) (1 diff)
-
wp-includes/post.php (modified) (2 diffs)
-
wp-includes/version.php (modified) (1 diff)
-
wp-includes/wp-db.php (modified) (1 diff)
-
wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r4831 r4832 76 76 </fieldset> 77 77 78 <fieldset id="tagdiv" class="dbx-box">79 <h3 class="dbx-handle"><?php _e('Tags') ?></h3>80 <div class="dbx-content">81 <p id="jaxtag"></p>82 <ul id="tagchecklist"><?php dropdown_tags(); ?></ul></div>83 </fieldset>84 85 78 <fieldset id="commentstatusdiv" class="dbx-box"> 86 79 <h3 class="dbx-handle"><?php _e('Discussion') ?></h3> -
trunk/wp-admin/upgrade-schema.php
r4831 r4832 120 120 KEY post_name (post_name), 121 121 KEY type_status_date (post_type,post_status,post_date,ID) 122 );123 CREATE TABLE $wpdb->tags (124 tag_id bigint(20) unsigned NOT NULL auto_increment,125 tag varchar(30) NOT NULL default '',126 raw_tag varchar(50) NOT NULL default '',127 tag_count bigint(20) unsigned NOT NULL default '0',128 PRIMARY KEY (tag_id)129 );130 CREATE TABLE $wpdb->tagged (131 tag_id bigint(20) unsigned NOT NULL default '0',132 post_id bigint(20) unsigned NOT NULL default '0',133 PRIMARY KEY (tag_id,post_id),134 KEY tag_id_index (tag_id),135 KEY post_id_index (post_id)136 122 ); 137 123 CREATE TABLE $wpdb->users ( -
trunk/wp-includes/post.php
r4831 r4832 522 522 } 523 523 $post_cat = $post_category[0]; 524 525 if ( empty($post_tags) )526 $post_tags = array();527 524 528 525 if ( empty($post_author) ) … … 650 647 651 648 wp_set_post_categories($post_ID, $post_category); 652 wp_set_post_tags($post_ID, $post_tags);653 649 654 650 if ( 'page' == $post_type ) { -
trunk/wp-includes/version.php
r4831 r4832 4 4 5 5 $wp_version = '2.2-bleeding'; 6 $wp_db_version = 4 815;6 $wp_db_version = 4772; 7 7 8 8 ?> -
trunk/wp-includes/wp-db.php
r4831 r4832 35 35 var $optiongroup_options; 36 36 var $postmeta; 37 var $tags;38 var $tagged;39 37 40 38 /** -
trunk/wp-settings.php
r4831 r4832 117 117 $wpdb->postmeta = $wpdb->prefix . 'postmeta'; 118 118 $wpdb->usermeta = $wpdb->prefix . 'usermeta'; 119 $wpdb->tags = $wpdb->prefix . 'tags';120 $wpdb->tagged = $wpdb->prefix . 'tagged';121 119 122 120 if ( defined('CUSTOM_USER_TABLE') )
Note: See TracChangeset
for help on using the changeset viewer.