Ticket #10633: 10633.patch
File 10633.patch, 59.0 KB (added by , 15 years ago) |
---|
-
index.php
15 15 16 16 /** Loads the WordPress Environment and Template */ 17 17 require('./wp-blog-header.php'); 18 ?>19 No newline at end of file -
wp-app.php
1645 1645 $server = new AtomServer(); 1646 1646 $server->handle_request(); 1647 1647 1648 ?> -
wp-atom.php
9 9 require( './wp-load.php' ); 10 10 wp_redirect( get_bloginfo( 'atom_url' ), 301 ); 11 11 12 ?>13 No newline at end of file -
wp-blog-header.php
17 17 18 18 } 19 19 20 ?>21 No newline at end of file -
wp-comments-post.php
89 89 90 90 wp_redirect($location); 91 91 92 ?> -
wp-commentsrss2.php
9 9 require( './wp-load.php' ); 10 10 wp_redirect( get_bloginfo( 'comments_rss2_url' ), 301 ); 11 11 12 ?>13 No newline at end of file -
wp-feed.php
9 9 require( './wp-load.php' ); 10 10 wp_redirect( get_bloginfo( 'rss2_url' ), 301 ); 11 11 12 ?>13 No newline at end of file -
wp-load.php
51 51 52 52 } 53 53 54 ?> -
wp-login.php
553 553 554 554 break; 555 555 } // end action switch 556 ?> -
wp-mail.php
225 225 226 226 $pop3->quit(); 227 227 228 ?> -
wp-pass.php
16 16 setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH); 17 17 18 18 wp_safe_redirect(wp_get_referer()); 19 ?>20 No newline at end of file -
wp-rdf.php
9 9 require( './wp-load.php' ); 10 10 wp_redirect( get_bloginfo( 'rdf_url' ), 301 ); 11 11 12 ?>13 No newline at end of file -
wp-register.php
12 12 require('./wp-load.php'); 13 13 wp_redirect('wp-login.php?action=register'); 14 14 15 ?>16 No newline at end of file -
wp-rss.php
9 9 require( './wp-load.php' ); 10 10 wp_redirect( get_bloginfo( 'rss_url' ), 301 ); 11 11 12 ?>13 No newline at end of file -
wp-rss2.php
9 9 require( './wp-load.php' ); 10 10 wp_redirect( get_bloginfo( 'rss2_url' ), 301 ); 11 11 12 ?>13 No newline at end of file -
wp-settings.php
703 703 // Everything is loaded and initialized. 704 704 do_action('init'); 705 705 706 ?> -
wp-trackback.php
108 108 do_action('trackback_post', $wpdb->insert_id); 109 109 trackback_response(0); 110 110 } 111 ?>112 No newline at end of file -
xmlrpc.php
3425 3425 3426 3426 $wp_xmlrpc_server = new wp_xmlrpc_server(); 3427 3427 $wp_xmlrpc_server->serve_request(); 3428 ?> -
wp-admin/admin-ajax.php
1340 1340 die('0'); 1341 1341 break; 1342 1342 endswitch; 1343 ?> -
wp-admin/admin-functions.php
13 13 14 14 /** WordPress Administration API: Includes all Administration functions. */ 15 15 require_once(ABSPATH . 'wp-admin/includes/admin.php'); 16 ?>17 No newline at end of file -
wp-admin/admin-post.php
30 30 31 31 do_action($action); 32 32 33 ?>34 No newline at end of file -
wp-admin/admin.php
156 156 if ( !empty($_REQUEST['action']) ) 157 157 do_action('admin_action_' . $_REQUEST['action']); 158 158 159 ?> -
wp-admin/async-upload.php
56 56 echo apply_filters("async_upload_{$type}", $id); 57 57 } 58 58 59 ?> -
wp-admin/categories.php
303 303 304 304 include('admin-footer.php'); 305 305 306 ?> -
wp-admin/comment.php
269 269 270 270 include('admin-footer.php'); 271 271 272 ?> -
wp-admin/custom-header.php
475 475 } 476 476 477 477 } 478 ?> -
wp-admin/edit-attachment-rows.php
223 223 224 224 <?php 225 225 } // end if ( have_posts() ) 226 ?>227 -
wp-admin/edit-comments.php
414 414 415 415 <?php 416 416 wp_comment_reply('-1', true, 'detail'); 417 include('admin-footer.php'); ?> 417 include('admin-footer.php'); 418 No newline at end of file -
wp-admin/edit-form-advanced.php
223 223 <script type="text/javascript"> 224 224 try{document.post.title.focus();}catch(e){} 225 225 </script> 226 <?php endif; ?> 226 <?php endif; 227 No newline at end of file -
wp-admin/edit-link-categories.php
225 225 </div><!-- /wrap --> 226 226 227 227 <?php inline_edit_term_row('edit-link-categories'); ?> 228 <?php include('admin-footer.php'); ?> 228 <?php include('admin-footer.php'); 229 No newline at end of file -
wp-admin/edit-tags.php
317 317 318 318 include('admin-footer.php'); 319 319 320 ?> -
wp-admin/export.php
62 62 63 63 64 64 include ('admin-footer.php'); 65 ?> -
wp-admin/import.php
73 73 <?php 74 74 75 75 include ('admin-footer.php'); 76 ?>77 -
wp-admin/index-extra.php
37 37 38 38 } 39 39 40 ?>41 No newline at end of file -
wp-admin/index.php
41 41 42 42 </div><!-- wrap --> 43 43 44 <?php require(ABSPATH . 'wp-admin/admin-footer.php'); ?> 44 <?php require(ABSPATH . 'wp-admin/admin-footer.php'); 45 No newline at end of file -
wp-admin/install-helper.php
222 222 return false; 223 223 } 224 224 225 ?> -
wp-admin/link-add.php
27 27 include('edit-link-form.php'); 28 28 29 29 require('admin-footer.php'); 30 ?>31 No newline at end of file -
wp-admin/link-category.php
97 97 break; 98 98 } 99 99 100 ?> -
wp-admin/link-parse-opml.php
94 94 95 95 // Free up memory used by the XML parser 96 96 xml_parser_free($xml_parser); 97 ?> -
wp-admin/link.php
113 113 default : 114 114 break; 115 115 } 116 ?> -
wp-admin/media-new.php
11 11 require_once('admin.php'); 12 12 require_once('media-upload.php'); 13 13 14 ?>15 No newline at end of file -
wp-admin/media-upload.php
107 107 else 108 108 do_action("media_upload_$tab"); 109 109 } 110 ?> -
wp-admin/media.php
119 119 endswitch; 120 120 121 121 122 ?> -
wp-admin/menu.php
309 309 wp_die( __('You do not have sufficient permissions to access this page.') ); 310 310 } 311 311 312 ?> -
wp-admin/moderation.php
9 9 */ 10 10 require_once('../wp-load.php'); 11 11 wp_redirect('edit-comments.php?comment_status=moderated'); 12 ?> -
wp-admin/options-discussion.php
228 228 </form> 229 229 </div> 230 230 231 <?php include('./admin-footer.php'); ?> 231 <?php include('./admin-footer.php'); 232 No newline at end of file -
wp-admin/options-general.php
280 280 281 281 </div> 282 282 283 <?php include('./admin-footer.php') ?> 283 <?php include('./admin-footer.php') 284 No newline at end of file -
wp-admin/options-head.php
14 14 15 15 <?php if (isset($_GET['updated'])) : ?> 16 16 <div id="message" class="updated fade"><p><strong><?php _e('Settings saved.') ?></strong></p></div> 17 <?php endif; ?>18 No newline at end of file 17 <?php endif; 18 No newline at end of file -
wp-admin/options-media.php
75 75 76 76 </div> 77 77 78 <?php include('./admin-footer.php'); ?> 78 <?php include('./admin-footer.php'); 79 No newline at end of file -
wp-admin/options-misc.php
75 75 </form> 76 76 </div> 77 77 78 <?php include('./admin-footer.php'); ?> 78 <?php include('./admin-footer.php'); 79 No newline at end of file -
wp-admin/options-permalink.php
245 245 246 246 </div> 247 247 248 <?php require('./admin-footer.php'); ?> 248 <?php require('./admin-footer.php'); 249 No newline at end of file -
wp-admin/options-privacy.php
48 48 49 49 </div> 50 50 51 <?php include('./admin-footer.php') ?> 51 <?php include('./admin-footer.php') 52 No newline at end of file -
wp-admin/options-reading.php
87 87 </p> 88 88 </form> 89 89 </div> 90 <?php include('./admin-footer.php'); ?> 90 <?php include('./admin-footer.php'); 91 No newline at end of file -
wp-admin/options-writing.php
135 135 </form> 136 136 </div> 137 137 138 <?php include('./admin-footer.php') ?> 138 <?php include('./admin-footer.php') 139 No newline at end of file -
wp-admin/options.php
140 140 } // end switch 141 141 142 142 include('admin-footer.php'); 143 ?> -
wp-admin/page-new.php
28 28 29 29 include('admin-footer.php'); 30 30 31 ?> -
wp-admin/page.php
232 232 break; 233 233 } // end switch 234 234 include('admin-footer.php'); 235 ?> -
wp-admin/plugins.php
572 572 573 573 <?php 574 574 include('admin-footer.php'); 575 ?> -
wp-admin/post-new.php
37 37 include('edit-form-advanced.php'); 38 38 39 39 include('admin-footer.php'); 40 ?> -
wp-admin/post.php
272 272 break; 273 273 } // end switch 274 274 include('admin-footer.php'); 275 ?> -
wp-admin/profile.php
16 16 17 17 /** Load User Editing Page */ 18 18 require_once('user-edit.php'); 19 ?> -
wp-admin/themes.php
299 299 ?> 300 300 </div> 301 301 302 <?php require('admin-footer.php'); ?> 302 <?php require('admin-footer.php'); 303 No newline at end of file -
wp-admin/tools.php
94 94 </div> 95 95 <?php 96 96 include('admin-footer.php'); 97 ?> -
wp-admin/update-core.php
234 234 do_core_upgrade($reinstall); 235 235 include('admin-footer.php'); 236 236 237 }?> 237 } 238 No newline at end of file -
wp-admin/update-links.php
53 53 $wdpdb->update( $wpdb->links, array('link_updated' => $time), array('link_url' => $uri) ); 54 54 } 55 55 56 ?> -
wp-admin/upgrade-functions.php
10 10 11 11 _deprecated_file( basename(__FILE__), '2.5', 'wp-admin/includes/upgrade.php' ); 12 12 require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); 13 ?> -
wp-admin/user-edit.php
342 342 } 343 343 344 344 include('admin-footer.php'); 345 ?> -
wp-admin/user-new.php
151 151 </div> 152 152 <?php 153 153 include('admin-footer.php'); 154 ?> -
wp-admin/users.php
400 400 } // end of the $doaction switch 401 401 402 402 include('admin-footer.php'); 403 ?> -
wp-admin/import/blogger.php
1059 1059 } 1060 1060 } 1061 1061 1062 ?> -
wp-admin/import/blogware.php
212 212 $blogware_import = new BW_Import(); 213 213 214 214 register_importer('blogware', __('Blogware'), __('Import posts from Blogware.'), array ($blogware_import, 'dispatch')); 215 ?> -
wp-admin/import/btt.php
127 127 // add it to the import page! 128 128 register_importer('btt', 'Bunny’s Technorati Tags', __('Import Bunny’s Technorati Tags into WordPress tags.'), array($btt_import, 'dispatch')); 129 129 130 ?> -
wp-admin/import/dotclear.php
726 726 727 727 register_importer('dotclear', __('DotClear'), __('Import categories, users, posts, comments, and links from a DotClear blog.'), array ($dc_import, 'dispatch')); 728 728 729 ?> -
wp-admin/import/greymatter.php
331 331 $gm_import = new GM_Import(); 332 332 333 333 register_importer('greymatter', __('GreyMatter'), __('Import users, posts, and comments from a Greymatter blog.'), array ($gm_import, 'dispatch')); 334 ?> -
wp-admin/import/jkw.php
189 189 // add it to the import page! 190 190 register_importer('jkw', 'Jerome’s Keywords', __('Import Jerome’s Keywords into WordPress tags.'), array($jkw_import, 'dispatch')); 191 191 192 ?> -
wp-admin/import/livejournal.php
1051 1051 $lj_api_import = new LJ_API_Import(); 1052 1052 1053 1053 register_importer( 'livejournal', __( 'LiveJournal' ), __( 'Import posts from LiveJournal using their API.' ), array( $lj_api_import, 'dispatch' ) ); 1054 ?> -
wp-admin/import/mt.php
511 511 $mt_import = new MT_Import(); 512 512 513 513 register_importer('mt', __('Movable Type and TypePad'), __('Import posts and comments from a Movable Type or TypePad blog.'), array ($mt_import, 'dispatch')); 514 ?> -
wp-admin/import/opml.php
153 153 154 154 register_importer('opml', __('Blogroll'), __('Import links in OPML format.'), array(&$opml_importer, 'dispatch')); 155 155 156 ?> -
wp-admin/import/rss.php
195 195 $rss_import = new RSS_Import(); 196 196 197 197 register_importer('rss', __('RSS'), __('Import posts from an RSS feed.'), array ($rss_import, 'dispatch')); 198 ?> -
wp-admin/import/stp.php
167 167 168 168 // add it to the import page! 169 169 register_importer('stp', 'Simple Tagging', __('Import Simple Tagging tags into WordPress tags.'), array($stp_import, 'dispatch')); 170 ?> -
wp-admin/import/textpattern.php
697 697 698 698 register_importer('textpattern', __('Textpattern'), __('Import categories, users, posts, comments, and links from a Textpattern blog.'), array ($txp_import, 'dispatch')); 699 699 700 ?> -
wp-admin/import/utw.php
287 287 // add it to the import page! 288 288 register_importer('utw', 'Ultimate Tag Warrior', __('Import Ultimate Tag Warrior tags into WordPress tags.'), array($utw_import, 'dispatch')); 289 289 290 ?> -
wp-admin/import/wordpress.php
808 808 809 809 register_importer('wordpress', 'WordPress', __('Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.'), array ($wp_import, 'dispatch')); 810 810 811 ?> -
wp-admin/import/wp-cat2tag.php
469 469 470 470 register_importer('wp-cat2tag', __('Categories and Tags Converter'), __('Convert existing categories to tags or tags to categories, selectively.'), array(&$wp_cat2tag_importer, 'init')); 471 471 472 ?> -
wp-admin/includes/admin.php
51 51 /** WordPress Registration API */ 52 52 require_once(ABSPATH . WPINC . '/registration.php'); 53 53 54 ?>55 No newline at end of file -
wp-admin/includes/bookmark.php
270 270 return wp_insert_link( $linkdata ); 271 271 } 272 272 273 ?> -
wp-admin/includes/class-ftp-pure.php
187 187 } 188 188 } 189 189 190 ?> -
wp-admin/includes/class-ftp-sockets.php
247 247 } 248 248 } 249 249 } 250 ?> -
wp-admin/includes/class-ftp.php
900 900 } 901 901 902 902 require_once "class-ftp-".($mod_sockets?"sockets":"pure").".php"; 903 ?> -
wp-admin/includes/class-pclzip.php
6282 6282 // -------------------------------------------------------------------------------- 6283 6283 6284 6284 6285 ?> -
wp-admin/includes/class-wp-filesystem-base.php
317 317 } 318 318 } 319 319 320 ?> -
wp-admin/includes/class-wp-filesystem-direct.php
357 357 return $ret; 358 358 } 359 359 } 360 ?> -
wp-admin/includes/class-wp-filesystem-ftpext.php
382 382 } 383 383 } 384 384 385 ?> -
wp-admin/includes/class-wp-filesystem-ftpsockets.php
324 324 } 325 325 } 326 326 327 ?> -
wp-admin/includes/comment.php
164 164 add_filter( 'comment_author', 'floated_admin_avatar' ); 165 165 } 166 166 167 ?> -
wp-admin/includes/dashboard.php
925 925 */ 926 926 function wp_dashboard_empty() {} 927 927 928 ?> -
wp-admin/includes/export.php
338 338 <?php 339 339 } 340 340 341 ?> -
wp-admin/includes/file.php
811 811 return false; 812 812 } 813 813 814 ?> -
wp-admin/includes/image.php
327 327 return apply_filters('file_is_displayable_image', $result, $path); 328 328 } 329 329 330 ?> -
wp-admin/includes/import.php
84 84 return array( 'file' => $file, 'id' => $id ); 85 85 } 86 86 87 ?> -
wp-admin/includes/media.php
2129 2129 2130 2130 add_filter('media_upload_library', 'media_upload_library'); 2131 2131 2132 ?> -
wp-admin/includes/misc.php
638 638 unlink($path); 639 639 return true; 640 640 } 641 ?> -
wp-admin/includes/plugin.php
1123 1123 wp_nonce_field("$option_group-options"); 1124 1124 } 1125 1125 1126 ?> -
wp-admin/includes/schema.php
578 578 } 579 579 } 580 580 581 ?> -
wp-admin/includes/template.php
3787 3787 <?php 3788 3788 } 3789 3789 3790 ?> -
wp-admin/includes/theme.php
144 144 return $page_templates; 145 145 } 146 146 147 ?> -
wp-admin/includes/update-core.php
259 259 $wp_filesystem->delete($maintenance_file); 260 260 } 261 261 262 ?> -
wp-admin/includes/update.php
227 227 } 228 228 add_action( 'admin_notices', 'maintenance_nag' ); 229 229 230 ?> -
wp-admin/includes/upgrade.php
1686 1686 $wpdb->query("ALTER TABLE $wpdb->options DROP INDEX option_name"); 1687 1687 } 1688 1688 1689 ?> -
wp-admin/includes/user.php
837 837 echo '</p></div>'; 838 838 } 839 839 840 ?> -
wp-content/index.php
1 1 <?php 2 2 // Silence is golden. 3 ?>4 No newline at end of file -
wp-content/plugins/hello.php
81 81 82 82 add_action('admin_head', 'dolly_css'); 83 83 84 ?> -
wp-content/plugins/index.php
1 1 <?php 2 2 // Silence is golden. 3 ?>4 No newline at end of file -
wp-content/themes/index.php
1 1 <?php 2 2 // Silence is golden. 3 ?>4 No newline at end of file -
wp-content/themes/classic/comments.php
79 79 80 80 <?php else : // Comments are closed ?> 81 81 <p><?php _e('Sorry, the comment form is closed at this time.'); ?></p> 82 <?php endif; ?> 82 <?php endif; 83 No newline at end of file -
wp-content/themes/classic/functions.php
14 14 'after_title' => '', 15 15 )); 16 16 17 ?> -
wp-content/themes/classic/index.php
33 33 34 34 <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> 35 35 36 <?php get_footer(); ?> 36 <?php get_footer(); 37 No newline at end of file -
wp-content/themes/default/404.php
15 15 16 16 <?php get_sidebar(); ?> 17 17 18 <?php get_footer(); ?>19 No newline at end of file 18 <?php get_footer(); 19 No newline at end of file -
wp-content/themes/default/archive.php
74 74 75 75 <?php get_sidebar(); ?> 76 76 77 <?php get_footer(); ?> 77 <?php get_footer(); 78 No newline at end of file -
wp-content/themes/default/archives.php
26 26 27 27 </div> 28 28 29 <?php get_footer(); ?> 29 <?php get_footer(); 30 No newline at end of file -
wp-content/themes/default/comments.php
93 93 <?php endif; // If registration required and not logged in ?> 94 94 </div> 95 95 96 <?php endif; // if you delete this the sky will fall on your head ?> 96 <?php endif; // if you delete this the sky will fall on your head 97 No newline at end of file -
wp-content/themes/default/functions.php
424 424 </div> 425 425 </div> 426 426 </div> 427 <?php } ?> 427 <?php } 428 No newline at end of file -
wp-content/themes/default/image.php
67 67 68 68 </div> 69 69 70 <?php get_footer(); ?> 70 <?php get_footer(); 71 No newline at end of file -
wp-content/themes/default/index.php
42 42 43 43 <?php get_sidebar(); ?> 44 44 45 <?php get_footer(); ?> 45 <?php get_footer(); 46 No newline at end of file -
wp-content/themes/default/links.php
20 20 21 21 </div> 22 22 23 <?php get_footer(); ?> 23 <?php get_footer(); 24 No newline at end of file -
wp-content/themes/default/page.php
27 27 28 28 <?php get_sidebar(); ?> 29 29 30 <?php get_footer(); ?> 30 <?php get_footer(); 31 No newline at end of file -
wp-content/themes/default/search.php
45 45 46 46 <?php get_sidebar(); ?> 47 47 48 <?php get_footer(); ?> 48 <?php get_footer(); 49 No newline at end of file -
wp-content/themes/default/single.php
70 70 71 71 </div> 72 72 73 <?php get_footer(); ?> 73 <?php get_footer(); 74 No newline at end of file -
wp-content/themes/default/images/header-img.php
79 79 header("Content-Type: image/jpeg"); 80 80 imagejpeg($im, '', 92); 81 81 imagedestroy($im); 82 ?> -
wp-includes/atomlib.php
351 351 } 352 352 } 353 353 354 ?> -
wp-includes/author-template.php
338 338 echo $return; 339 339 } 340 340 341 ?> -
wp-includes/bookmark-template.php
251 251 echo $output; 252 252 } 253 253 254 ?> -
wp-includes/bookmark.php
373 373 wp_cache_delete( 'get_bookmarks', 'bookmark' ); 374 374 } 375 375 376 ?> -
wp-includes/cache.php
449 449 return true; 450 450 } 451 451 } 452 ?> -
wp-includes/canonical.php
342 342 343 343 add_action('template_redirect', 'redirect_canonical'); 344 344 345 ?> -
wp-includes/capabilities.php
1005 1005 return $wp_roles->remove_role( $role ); 1006 1006 } 1007 1007 1008 ?> -
wp-includes/category-template.php
969 969 return $r; 970 970 } 971 971 972 ?> -
wp-includes/category.php
365 365 } 366 366 367 367 368 ?> -
wp-includes/class-IXR.php
897 897 } 898 898 } 899 899 900 ?> -
wp-includes/class-phpass.php
255 255 } 256 256 } 257 257 258 ?> -
wp-includes/class-phpmailer.php
1918 1918 1919 1919 } 1920 1920 1921 ?> -
wp-includes/class-pop3.php
648 648 } 649 649 650 650 } // End class 651 ?> -
wp-includes/class-simplepie.php
13638 13638 } 13639 13639 } 13640 13640 13641 ?> -
wp-includes/class-smtp.php
1059 1059 } 1060 1060 1061 1061 1062 ?> 1062 1063 No newline at end of file -
wp-includes/class-snoopy.php
713 713 chr(176), 714 714 chr(39), 715 715 chr(128), 716 " ä",717 " ö",718 " ü",719 " Ä",720 " Ö",721 " Ü",722 " ß",716 "�", 717 "�", 718 "�", 719 "�", 720 "�", 721 "�", 722 "�", 723 723 ); 724 724 725 725 $text = preg_replace($search,$replace,$document); … … 1247 1247 } 1248 1248 } 1249 1249 endif; 1250 ?> -
wp-includes/classes.php
1682 1682 1683 1683 } 1684 1684 1685 ?> -
wp-includes/comment-template.php
1396 1396 $in_comment_loop = false; 1397 1397 } 1398 1398 1399 ?> -
wp-includes/comment.php
1709 1709 return $open; 1710 1710 } 1711 1711 1712 ?> -
wp-includes/default-filters.php
210 210 211 211 add_filter('pre_option_gmt_offset','wp_timezone_override_offset'); 212 212 213 ?> -
wp-includes/deprecated.php
1690 1690 the_author_meta('ID'); 1691 1691 } 1692 1692 1693 ?>1694 No newline at end of file -
wp-includes/formatting.php
2688 2688 return $str; 2689 2689 } 2690 2690 2691 ?> -
wp-includes/functions.php
3371 3371 3372 3372 update_option('wp_trash_meta', $trash_meta); 3373 3373 } 3374 ?>3375 No newline at end of file -
wp-includes/general-template.php
2045 2045 return apply_filters( "get_the_generator_{$type}", $gen, $type ); 2046 2046 } 2047 2047 2048 ?> -
wp-includes/gettext.php
397 397 398 398 } 399 399 400 ?>401 No newline at end of file -
wp-includes/http.php
2093 2093 return $response['body']; 2094 2094 } 2095 2095 2096 ?> -
wp-includes/l10n.php
424 424 function translate_user_role( $name ) { 425 425 return translate_with_gettext_context( before_last_bar($name), 'User role' ); 426 426 } 427 ?> -
wp-includes/link-template.php
1825 1825 echo "<link rel='canonical' href='$link' />\n"; 1826 1826 } 1827 1827 1828 ?> -
wp-includes/locale.php
332 332 } 333 333 } 334 334 335 ?> -
wp-includes/plugin.php
695 695 return $function[0].$function[1]; 696 696 } 697 697 698 ?> -
wp-includes/query.php
2701 2701 return true; 2702 2702 } 2703 2703 2704 ?> -
wp-includes/registration-functions.php
6 6 */ 7 7 _deprecated_file( basename(__FILE__), '0.0', 'registration.php' ); 8 8 require_once(ABSPATH . WPINC . '/registration.php'); 9 ?> -
wp-includes/registration.php
318 318 return apply_filters('user_contactmethods',$user_contactmethods); 319 319 } 320 320 321 ?> -
wp-includes/rewrite.php
1943 1943 } 1944 1944 } 1945 1945 1946 ?> -
wp-includes/rss-functions.php
7 7 8 8 _deprecated_file( basename(__FILE__), '0.0', 'rss.php' ); 9 9 require_once (ABSPATH . WPINC . '/rss.php'); 10 ?> -
wp-includes/rss.php
919 919 } 920 920 endif; 921 921 922 ?> -
wp-includes/shortcodes.php
294 294 295 295 add_filter('the_content', 'do_shortcode', 11); // AFTER wpautop() 296 296 297 ?>298 No newline at end of file -
wp-includes/streams.php
188 188 } 189 189 190 190 191 ?> -
wp-includes/taxonomy.php
2349 2349 return false; 2350 2350 } 2351 2351 2352 ?> -
wp-includes/template-loader.php
75 75 } 76 76 } 77 77 78 ?>79 No newline at end of file -
wp-includes/theme.php
1145 1145 add_action('admin_menu', array(&$GLOBALS['custom_image_header'], 'init')); 1146 1146 } 1147 1147 1148 ?> -
wp-includes/update.php
331 331 if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') ) 332 332 wp_schedule_event(time(), 'twicedaily', 'wp_update_themes'); 333 333 334 ?> -
wp-includes/user.php
600 600 wp_cache_add($user->user_nicename, $user->ID, 'userslugs'); 601 601 } 602 602 603 ?> -
wp-includes/vars.php
81 81 $is_iis7 = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7.') !== false); 82 82 83 83 84 ?>85 No newline at end of file -
wp-includes/wp-db.php
1121 1121 */ 1122 1122 $wpdb = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST); 1123 1123 } 1124 ?> -
wp-includes/wp-diff.php
468 468 469 469 } 470 470 471 ?> -
wp-includes/js/tinymce/plugins/spellchecker/config.php
3 3 * config.php 4 4 * @package MCManager.includes 5 5 * @author Moxiecode 6 * @copyright Copyright ©2007, Moxiecode Systems AB, All rights reserved.6 * @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved. 7 7 */ 8 8 // General settings 9 9 $config['general.engine'] = 'GoogleSpell'; … … 25 25 // Windows PSpellShell settings 26 26 //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"'; 27 27 //$config['PSpellShell.tmp'] = 'c:/temp'; 28 ?> -
wp-includes/js/tinymce/plugins/spellchecker/rpc.php
4 4 * 5 5 * @package MCManager.includes 6 6 * @author Moxiecode 7 * @copyright Copyright ©2004-2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 require_once("./includes/general.php"); … … 109 109 // Return JSON encoded string 110 110 echo $json->encode($output); 111 111 112 ?>113 No newline at end of file -
wp-includes/js/tinymce/plugins/spellchecker/classes/EnchantSpell.php
6 6 * 7 7 * @package MCManager.includes 8 8 * @author Moxiecode 9 * @copyright Copyright ©2004-2007, Moxiecode Systems AB, All rights reserved.9 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved. 10 10 */ 11 11 12 12 class EnchantSpell extends SpellChecker { … … 64 64 } 65 65 } 66 66 67 ?>68 No newline at end of file -
wp-includes/js/tinymce/plugins/spellchecker/classes/GoogleSpell.php
4 4 * 5 5 * @package MCManager.includes 6 6 * @author Moxiecode 7 * @copyright Copyright ©2004-2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 class GoogleSpell extends SpellChecker { … … 156 156 } 157 157 } 158 158 159 ?>160 No newline at end of file -
wp-includes/js/tinymce/plugins/spellchecker/classes/PSpell.php
4 4 * 5 5 * @package MCManager.includes 6 6 * @author Moxiecode 7 * @copyright Copyright ©2004-2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 class PSpell extends SpellChecker { … … 79 79 } 80 80 } 81 81 82 ?> -
wp-includes/js/tinymce/plugins/spellchecker/classes/PSpellShell.php
4 4 * 5 5 * @package MCManager.includes 6 6 * @author Moxiecode 7 * @copyright Copyright ©2004-2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 class PSpellShell extends SpellChecker { … … 110 110 } 111 111 } 112 112 113 ?>114 No newline at end of file -
wp-includes/js/tinymce/plugins/spellchecker/classes/SpellChecker.php
4 4 * 5 5 * @package MCManager.includes 6 6 * @author Moxiecode 7 * @copyright Copyright ©2004-2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 class SpellChecker { … … 59 59 } 60 60 } 61 61 62 ?> -
wp-includes/js/tinymce/plugins/spellchecker/classes/utils/JSON.php
4 4 * 5 5 * @package MCManager.utils 6 6 * @author Moxiecode 7 * @copyright Copyright ©2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 define('JSON_BOOL', 1); … … 592 592 } 593 593 } 594 594 595 ?> -
wp-includes/js/tinymce/plugins/spellchecker/classes/utils/Logger.php
4 4 * 5 5 * @package MCFileManager.filesystems 6 6 * @author Moxiecode 7 * @copyright Copyright ©2005, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2005, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 // File type contstants … … 265 265 } 266 266 } 267 267 268 ?>269 No newline at end of file -
wp-includes/js/tinymce/plugins/spellchecker/includes/general.php
4 4 * 5 5 * @package MCManager.includes 6 6 * @author Moxiecode 7 * @copyright Copyright ©2007, Moxiecode Systems AB, All rights reserved.7 * @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved. 8 8 */ 9 9 10 10 @error_reporting(E_ALL ^ E_NOTICE); … … 95 95 $log->fatal(implode(', ', $args)); 96 96 } 97 97 98 ?>99 No newline at end of file -
wp-includes/pomo/entry.php
67 67 return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular; 68 68 } 69 69 } 70 ?> -
wp-includes/pomo/mo.php
182 182 183 183 184 184 } 185 ?> -
wp-includes/pomo/po.php
357 357 return $s; 358 358 } 359 359 } 360 ?> -
wp-includes/pomo/streams.php
134 134 } 135 135 } 136 136 137 ?> -
wp-includes/pomo/translations.php
196 196 197 197 } 198 198 199 ?>