Changeset 13089
- Timestamp:
- 02/13/2010 06:08:15 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
wp-admin/includes/class-wp-upgrader.php (modified) (1 diff)
-
wp-includes/formatting.php (modified) (2 diffs)
-
wp-includes/query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-upgrader.php
r12789 r13089 465 465 $this->maintenance_mode(true); 466 466 467 $results = array(); 468 467 469 $all = count($plugins); 468 470 $i = 1; -
trunk/wp-includes/formatting.php
r13076 r13089 1375 1375 */ 1376 1376 function wp_rel_nofollow( $text ) { 1377 global $wpdb;1378 1377 // This is a pre save filter, so text is already escaped. 1379 1378 $text = stripslashes($text); … … 2471 2470 case 'thread_comments_depth': 2472 2471 case 'users_can_register': 2472 case 'start_of_week': 2473 2473 $value = absint( $value ); 2474 2474 break; -
trunk/wp-includes/query.php
r13052 r13089 2366 2366 if ( 'publish' != $sticky_post->post_status ) 2367 2367 continue; 2368 array_splice($this->posts, $sticky_offset, 0, array($sticky_post));2369 $sticky_offset++;2368 array_splice($this->posts, $sticky_offset, 0, array($sticky_post)); 2369 $sticky_offset++; 2370 2370 } 2371 2371 }
Note: See TracChangeset
for help on using the changeset viewer.