Make WordPress Core

Ticket #10633: 10633.patch

File 10633.patch, 59.0 KB (added by hakre, 15 years ago)
  • index.php

     
    1515
    1616/** Loads the WordPress Environment and Template */
    1717require('./wp-blog-header.php');
    18 ?>
    19  No newline at end of file
  • wp-app.php

     
    16451645$server = new AtomServer();
    16461646$server->handle_request();
    16471647
    1648 ?>
  • wp-atom.php

     
    99require( './wp-load.php' );
    1010wp_redirect( get_bloginfo( 'atom_url' ), 301 );
    1111
    12 ?>
    13  No newline at end of file
  • wp-blog-header.php

     
    1717
    1818}
    1919
    20 ?>
    21  No newline at end of file
  • wp-comments-post.php

     
    8989
    9090wp_redirect($location);
    9191
    92 ?>
  • wp-commentsrss2.php

     
    99require( './wp-load.php' );
    1010wp_redirect( get_bloginfo( 'comments_rss2_url' ), 301 );
    1111
    12 ?>
    13  No newline at end of file
  • wp-feed.php

     
    99require( './wp-load.php' );
    1010wp_redirect( get_bloginfo( 'rss2_url' ), 301 );
    1111
    12 ?>
    13  No newline at end of file
  • wp-load.php

     
    5151
    5252}
    5353
    54 ?>
  • wp-login.php

     
    553553
    554554break;
    555555} // end action switch
    556 ?>
  • wp-mail.php

     
    225225
    226226$pop3->quit();
    227227
    228 ?>
  • wp-pass.php

     
    1616setcookie('wp-postpass_' . COOKIEHASH, $_POST['post_password'], time() + 864000, COOKIEPATH);
    1717
    1818wp_safe_redirect(wp_get_referer());
    19 ?>
    20  No newline at end of file
  • wp-rdf.php

     
    99require( './wp-load.php' );
    1010wp_redirect( get_bloginfo( 'rdf_url' ), 301 );
    1111
    12 ?>
    13  No newline at end of file
  • wp-register.php

     
    1212require('./wp-load.php');
    1313wp_redirect('wp-login.php?action=register');
    1414
    15 ?>
    16  No newline at end of file
  • wp-rss.php

     
    99require( './wp-load.php' );
    1010wp_redirect( get_bloginfo( 'rss_url' ), 301 );
    1111
    12 ?>
    13  No newline at end of file
  • wp-rss2.php

     
    99require( './wp-load.php' );
    1010wp_redirect( get_bloginfo( 'rss2_url' ), 301 );
    1111
    12 ?>
    13  No newline at end of file
  • wp-settings.php

     
    703703// Everything is loaded and initialized.
    704704do_action('init');
    705705
    706 ?>
  • wp-trackback.php

     
    108108        do_action('trackback_post', $wpdb->insert_id);
    109109        trackback_response(0);
    110110}
    111 ?>
    112  No newline at end of file
  • xmlrpc.php

     
    34253425
    34263426$wp_xmlrpc_server = new wp_xmlrpc_server();
    34273427$wp_xmlrpc_server->serve_request();
    3428 ?>
  • wp-admin/admin-ajax.php

     
    13401340        die('0');
    13411341        break;
    13421342endswitch;
    1343 ?>
  • wp-admin/admin-functions.php

     
    1313
    1414/** WordPress Administration API: Includes all Administration functions. */
    1515require_once(ABSPATH . 'wp-admin/includes/admin.php');
    16 ?>
    17  No newline at end of file
  • wp-admin/admin-post.php

     
    3030
    3131do_action($action);
    3232
    33 ?>
    34  No newline at end of file
  • wp-admin/admin.php

     
    156156if ( !empty($_REQUEST['action']) )
    157157        do_action('admin_action_' . $_REQUEST['action']);
    158158
    159 ?>
  • wp-admin/async-upload.php

     
    5656        echo apply_filters("async_upload_{$type}", $id);
    5757}
    5858
    59 ?>
  • wp-admin/categories.php

     
    303303
    304304include('admin-footer.php');
    305305
    306 ?>
  • wp-admin/comment.php

     
    269269
    270270include('admin-footer.php');
    271271
    272 ?>
  • wp-admin/custom-header.php

     
    475475        }
    476476
    477477}
    478 ?>
  • wp-admin/edit-attachment-rows.php

     
    223223
    224224<?php
    225225} // end if ( have_posts() )
    226 ?>
    227 
  • wp-admin/edit-comments.php

     
    414414
    415415<?php
    416416wp_comment_reply('-1', true, 'detail');
    417 include('admin-footer.php'); ?>
     417include('admin-footer.php');
     418 No newline at end of file
  • wp-admin/edit-form-advanced.php

     
    223223<script type="text/javascript">
    224224try{document.post.title.focus();}catch(e){}
    225225</script>
    226 <?php endif; ?>
     226<?php endif;
     227 No newline at end of file
  • wp-admin/edit-link-categories.php

     
    225225</div><!-- /wrap -->
    226226
    227227<?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

     
    317317
    318318include('admin-footer.php');
    319319
    320 ?>
  • wp-admin/export.php

     
    6262
    6363
    6464include ('admin-footer.php');
    65 ?>
  • wp-admin/import.php

     
    7373<?php
    7474
    7575include ('admin-footer.php');
    76 ?>
    77 
  • wp-admin/index-extra.php

     
    3737
    3838}
    3939
    40 ?>
    41  No newline at end of file
  • wp-admin/index.php

     
    4141
    4242</div><!-- wrap -->
    4343
    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

     
    222222        return false;
    223223}
    224224
    225 ?>
  • wp-admin/link-add.php

     
    2727include('edit-link-form.php');
    2828
    2929require('admin-footer.php');
    30 ?>
    31  No newline at end of file
  • wp-admin/link-category.php

     
    9797break;
    9898}
    9999
    100 ?>
  • wp-admin/link-parse-opml.php

     
    9494
    9595// Free up memory used by the XML parser
    9696xml_parser_free($xml_parser);
    97 ?>
  • wp-admin/link.php

     
    113113        default :
    114114                break;
    115115}
    116 ?>
  • wp-admin/media-new.php

     
    1111require_once('admin.php');
    1212require_once('media-upload.php');
    1313
    14 ?>
    15  No newline at end of file
  • wp-admin/media-upload.php

     
    107107        else
    108108                do_action("media_upload_$tab");
    109109}
    110 ?>
  • wp-admin/media.php

     
    119119endswitch;
    120120
    121121
    122 ?>
  • wp-admin/menu.php

     
    309309        wp_die( __('You do not have sufficient permissions to access this page.') );
    310310}
    311311
    312 ?>
  • wp-admin/moderation.php

     
    99 */
    1010require_once('../wp-load.php');
    1111wp_redirect('edit-comments.php?comment_status=moderated');
    12 ?>
  • wp-admin/options-discussion.php

     
    228228</form>
    229229</div>
    230230
    231 <?php include('./admin-footer.php'); ?>
     231<?php include('./admin-footer.php');
     232 No newline at end of file
  • wp-admin/options-general.php

     
    280280
    281281</div>
    282282
    283 <?php include('./admin-footer.php') ?>
     283<?php include('./admin-footer.php')
     284 No newline at end of file
  • wp-admin/options-head.php

     
    1414
    1515<?php if (isset($_GET['updated'])) : ?>
    1616<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

     
    7575
    7676</div>
    7777
    78 <?php include('./admin-footer.php'); ?>
     78<?php include('./admin-footer.php');
     79 No newline at end of file
  • wp-admin/options-misc.php

     
    7575</form>
    7676</div>
    7777
    78 <?php include('./admin-footer.php'); ?>
     78<?php include('./admin-footer.php');
     79 No newline at end of file
  • wp-admin/options-permalink.php

     
    245245
    246246</div>
    247247
    248 <?php require('./admin-footer.php'); ?>
     248<?php require('./admin-footer.php');
     249 No newline at end of file
  • wp-admin/options-privacy.php

     
    4848
    4949</div>
    5050
    51 <?php include('./admin-footer.php') ?>
     51<?php include('./admin-footer.php')
     52 No newline at end of file
  • wp-admin/options-reading.php

     
    8787</p>
    8888</form>
    8989</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

     
    135135</form>
    136136</div>
    137137
    138 <?php include('./admin-footer.php') ?>
     138<?php include('./admin-footer.php')
     139 No newline at end of file
  • wp-admin/options.php

     
    140140} // end switch
    141141
    142142include('admin-footer.php');
    143 ?>
  • wp-admin/page-new.php

     
    2828
    2929include('admin-footer.php');
    3030
    31 ?>
  • wp-admin/page.php

     
    232232        break;
    233233} // end switch
    234234include('admin-footer.php');
    235 ?>
  • wp-admin/plugins.php

     
    572572
    573573<?php
    574574include('admin-footer.php');
    575 ?>
  • wp-admin/post-new.php

     
    3737include('edit-form-advanced.php');
    3838
    3939include('admin-footer.php');
    40 ?>
  • wp-admin/post.php

     
    272272        break;
    273273} // end switch
    274274include('admin-footer.php');
    275 ?>
  • wp-admin/profile.php

     
    1616
    1717/** Load User Editing Page */
    1818require_once('user-edit.php');
    19 ?>
  • wp-admin/themes.php

     
    299299?>
    300300</div>
    301301
    302 <?php require('admin-footer.php'); ?>
     302<?php require('admin-footer.php');
     303 No newline at end of file
  • wp-admin/tools.php

     
    9494</div>
    9595<?php
    9696include('admin-footer.php');
    97 ?>
  • wp-admin/update-core.php

     
    234234                do_core_upgrade($reinstall);
    235235        include('admin-footer.php');
    236236
    237 }?>
     237}
     238 No newline at end of file
  • wp-admin/update-links.php

     
    5353        $wdpdb->update( $wpdb->links, array('link_updated' => $time), array('link_url' => $uri) );
    5454}
    5555
    56 ?>
  • wp-admin/upgrade-functions.php

     
    1010
    1111_deprecated_file( basename(__FILE__), '2.5', 'wp-admin/includes/upgrade.php' );
    1212require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
    13 ?>
  • wp-admin/user-edit.php

     
    342342}
    343343
    344344include('admin-footer.php');
    345 ?>
  • wp-admin/user-new.php

     
    151151</div>
    152152<?php
    153153include('admin-footer.php');
    154 ?>
  • wp-admin/users.php

     
    400400} // end of the $doaction switch
    401401
    402402include('admin-footer.php');
    403 ?>
  • wp-admin/import/blogger.php

     
    10591059        }
    10601060}
    10611061
    1062 ?>
  • wp-admin/import/blogware.php

     
    212212$blogware_import = new BW_Import();
    213213
    214214register_importer('blogware', __('Blogware'), __('Import posts from Blogware.'), array ($blogware_import, 'dispatch'));
    215 ?>
  • wp-admin/import/btt.php

     
    127127// add it to the import page!
    128128register_importer('btt', 'Bunny&#8217;s Technorati Tags', __('Import Bunny&#8217;s Technorati Tags into WordPress tags.'), array($btt_import, 'dispatch'));
    129129
    130 ?>
  • wp-admin/import/dotclear.php

     
    726726
    727727register_importer('dotclear', __('DotClear'), __('Import categories, users, posts, comments, and links from a DotClear blog.'), array ($dc_import, 'dispatch'));
    728728
    729 ?>
  • wp-admin/import/greymatter.php

     
    331331$gm_import = new GM_Import();
    332332
    333333register_importer('greymatter', __('GreyMatter'), __('Import users, posts, and comments from a Greymatter blog.'), array ($gm_import, 'dispatch'));
    334 ?>
  • wp-admin/import/jkw.php

     
    189189// add it to the import page!
    190190register_importer('jkw', 'Jerome&#8217;s Keywords', __('Import Jerome&#8217;s Keywords into WordPress tags.'), array($jkw_import, 'dispatch'));
    191191
    192 ?>
  • wp-admin/import/livejournal.php

     
    10511051$lj_api_import = new LJ_API_Import();
    10521052
    10531053register_importer( 'livejournal', __( 'LiveJournal' ), __( 'Import posts from LiveJournal using their API.' ), array( $lj_api_import, 'dispatch' ) );
    1054 ?>
  • wp-admin/import/mt.php

     
    511511$mt_import = new MT_Import();
    512512
    513513register_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

     
    153153
    154154register_importer('opml', __('Blogroll'), __('Import links in OPML format.'), array(&$opml_importer, 'dispatch'));
    155155
    156 ?>
  • wp-admin/import/rss.php

     
    195195$rss_import = new RSS_Import();
    196196
    197197register_importer('rss', __('RSS'), __('Import posts from an RSS feed.'), array ($rss_import, 'dispatch'));
    198 ?>
  • wp-admin/import/stp.php

     
    167167
    168168// add it to the import page!
    169169register_importer('stp', 'Simple Tagging', __('Import Simple Tagging tags into WordPress tags.'), array($stp_import, 'dispatch'));
    170 ?>
  • wp-admin/import/textpattern.php

     
    697697
    698698register_importer('textpattern', __('Textpattern'), __('Import categories, users, posts, comments, and links from a Textpattern blog.'), array ($txp_import, 'dispatch'));
    699699
    700 ?>
  • wp-admin/import/utw.php

     
    287287// add it to the import page!
    288288register_importer('utw', 'Ultimate Tag Warrior', __('Import Ultimate Tag Warrior tags into WordPress tags.'), array($utw_import, 'dispatch'));
    289289
    290 ?>
  • wp-admin/import/wordpress.php

     
    808808
    809809register_importer('wordpress', 'WordPress', __('Import <strong>posts, pages, comments, custom fields, categories, and tags</strong> from a WordPress export file.'), array ($wp_import, 'dispatch'));
    810810
    811 ?>
  • wp-admin/import/wp-cat2tag.php

     
    469469
    470470register_importer('wp-cat2tag', __('Categories and Tags Converter'), __('Convert existing categories to tags or tags to categories, selectively.'), array(&$wp_cat2tag_importer, 'init'));
    471471
    472 ?>
  • wp-admin/includes/admin.php

     
    5151/** WordPress Registration API */
    5252require_once(ABSPATH . WPINC . '/registration.php');
    5353
    54 ?>
    55  No newline at end of file
  • wp-admin/includes/bookmark.php

     
    270270        return wp_insert_link( $linkdata );
    271271}
    272272
    273 ?>
  • wp-admin/includes/class-ftp-pure.php

     
    187187        }
    188188}
    189189
    190 ?>
  • wp-admin/includes/class-ftp-sockets.php

     
    247247                }
    248248        }
    249249}
    250 ?>
  • wp-admin/includes/class-ftp.php

     
    900900}
    901901
    902902require_once "class-ftp-".($mod_sockets?"sockets":"pure").".php";
    903 ?>
  • wp-admin/includes/class-pclzip.php

     
    62826282  // --------------------------------------------------------------------------------
    62836283
    62846284
    6285 ?>
  • wp-admin/includes/class-wp-filesystem-base.php

     
    317317        }
    318318}
    319319
    320 ?>
  • wp-admin/includes/class-wp-filesystem-direct.php

     
    357357                return $ret;
    358358        }
    359359}
    360 ?>
  • wp-admin/includes/class-wp-filesystem-ftpext.php

     
    382382        }
    383383}
    384384
    385 ?>
  • wp-admin/includes/class-wp-filesystem-ftpsockets.php

     
    324324        }
    325325}
    326326
    327 ?>
  • wp-admin/includes/comment.php

     
    164164                add_filter( 'comment_author', 'floated_admin_avatar' );
    165165}
    166166
    167 ?>
  • wp-admin/includes/dashboard.php

     
    925925 */
    926926function wp_dashboard_empty() {}
    927927
    928 ?>
  • wp-admin/includes/export.php

     
    338338<?php
    339339}
    340340
    341 ?>
  • wp-admin/includes/file.php

     
    811811        return false;
    812812}
    813813
    814 ?>
  • wp-admin/includes/image.php

     
    327327        return apply_filters('file_is_displayable_image', $result, $path);
    328328}
    329329
    330 ?>
  • wp-admin/includes/import.php

     
    8484        return array( 'file' => $file, 'id' => $id );
    8585}
    8686
    87 ?>
  • wp-admin/includes/media.php

     
    21292129
    21302130add_filter('media_upload_library', 'media_upload_library');
    21312131
    2132 ?>
  • wp-admin/includes/misc.php

     
    638638        unlink($path);
    639639    return true;
    640640}
    641 ?>
  • wp-admin/includes/plugin.php

     
    11231123        wp_nonce_field("$option_group-options");
    11241124}
    11251125
    1126 ?>
  • wp-admin/includes/schema.php

     
    578578        }
    579579}
    580580
    581 ?>
  • wp-admin/includes/template.php

     
    37873787<?php
    37883788}
    37893789
    3790 ?>
  • wp-admin/includes/theme.php

     
    144144        return $page_templates;
    145145}
    146146
    147 ?>
  • wp-admin/includes/update-core.php

     
    259259        $wp_filesystem->delete($maintenance_file);
    260260}
    261261
    262 ?>
  • wp-admin/includes/update.php

     
    227227}
    228228add_action( 'admin_notices', 'maintenance_nag' );
    229229
    230 ?>
  • wp-admin/includes/upgrade.php

     
    16861686        $wpdb->query("ALTER TABLE $wpdb->options DROP INDEX option_name");
    16871687}
    16881688
    1689 ?>
  • wp-admin/includes/user.php

     
    837837        echo '</p></div>';
    838838}
    839839
    840 ?>
  • wp-content/index.php

     
    11<?php
    22// Silence is golden.
    3 ?>
    4  No newline at end of file
  • wp-content/plugins/hello.php

     
    8181
    8282add_action('admin_head', 'dolly_css');
    8383
    84 ?>
  • wp-content/plugins/index.php

     
    11<?php
    22// Silence is golden.
    3 ?>
    4  No newline at end of file
  • wp-content/themes/index.php

     
    11<?php
    22// Silence is golden.
    3 ?>
    4  No newline at end of file
  • wp-content/themes/classic/comments.php

     
    7979
    8080<?php else : // Comments are closed ?>
    8181<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

     
    1414                'after_title' => '',
    1515        ));
    1616
    17 ?>
  • wp-content/themes/classic/index.php

     
    3333
    3434<?php posts_nav_link(' &#8212; ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
    3535
    36 <?php get_footer(); ?>
     36<?php get_footer();
     37 No newline at end of file
  • wp-content/themes/default/404.php

     
    1515
    1616<?php get_sidebar(); ?>
    1717
    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

     
    7474
    7575<?php get_sidebar(); ?>
    7676
    77 <?php get_footer(); ?>
     77<?php get_footer();
     78 No newline at end of file
  • wp-content/themes/default/archives.php

     
    2626
    2727</div>
    2828
    29 <?php get_footer(); ?>
     29<?php get_footer();
     30 No newline at end of file
  • wp-content/themes/default/comments.php

     
    9393<?php endif; // If registration required and not logged in ?>
    9494</div>
    9595
    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

     
    424424                </div>
    425425        </div>
    426426</div>
    427 <?php } ?>
     427<?php }
     428 No newline at end of file
  • wp-content/themes/default/image.php

     
    6767
    6868        </div>
    6969
    70 <?php get_footer(); ?>
     70<?php get_footer();
     71 No newline at end of file
  • wp-content/themes/default/index.php

     
    4242
    4343<?php get_sidebar(); ?>
    4444
    45 <?php get_footer(); ?>
     45<?php get_footer();
     46 No newline at end of file
  • wp-content/themes/default/links.php

     
    2020
    2121</div>
    2222
    23 <?php get_footer(); ?>
     23<?php get_footer();
     24 No newline at end of file
  • wp-content/themes/default/page.php

     
    2727
    2828<?php get_sidebar(); ?>
    2929
    30 <?php get_footer(); ?>
     30<?php get_footer();
     31 No newline at end of file
  • wp-content/themes/default/search.php

     
    4545
    4646<?php get_sidebar(); ?>
    4747
    48 <?php get_footer(); ?>
     48<?php get_footer();
     49 No newline at end of file
  • wp-content/themes/default/single.php

     
    7070
    7171        </div>
    7272
    73 <?php get_footer(); ?>
     73<?php get_footer();
     74 No newline at end of file
  • wp-content/themes/default/images/header-img.php

     
    7979header("Content-Type: image/jpeg");
    8080imagejpeg($im, '', 92);
    8181imagedestroy($im);
    82 ?>
  • wp-includes/atomlib.php

     
    351351    }
    352352}
    353353
    354 ?>
  • wp-includes/author-template.php

     
    338338        echo $return;
    339339}
    340340
    341 ?>
  • wp-includes/bookmark-template.php

     
    251251        echo $output;
    252252}
    253253
    254 ?>
  • wp-includes/bookmark.php

     
    373373        wp_cache_delete( 'get_bookmarks', 'bookmark' );
    374374}
    375375
    376 ?>
  • wp-includes/cache.php

     
    449449                return true;
    450450        }
    451451}
    452 ?>
  • wp-includes/canonical.php

     
    342342
    343343add_action('template_redirect', 'redirect_canonical');
    344344
    345 ?>
  • wp-includes/capabilities.php

     
    10051005        return $wp_roles->remove_role( $role );
    10061006}
    10071007
    1008 ?>
  • wp-includes/category-template.php

     
    969969        return $r;
    970970}
    971971
    972 ?>
  • wp-includes/category.php

     
    365365}
    366366
    367367
    368 ?>
  • wp-includes/class-IXR.php

     
    897897    }
    898898}
    899899
    900 ?>
  • wp-includes/class-phpass.php

     
    255255        }
    256256}
    257257
    258 ?>
  • wp-includes/class-phpmailer.php

     
    19181918
    19191919}
    19201920
    1921 ?>
  • wp-includes/class-pop3.php

     
    648648    }
    649649
    650650}   // End class
    651 ?>
  • wp-includes/class-simplepie.php

     
    1363813638        }
    1363913639}
    1364013640
    13641 ?>
  • wp-includes/class-smtp.php

     
    10591059}
    10601060
    10611061
    1062  ?>
     1062 
     1063 No newline at end of file
  • wp-includes/class-snoopy.php

     
    713713                                                        chr(176),
    714714                                                        chr(39),
    715715                                                        chr(128),
    716                                                         "ä",
    717                                                         "ö",
    718                                                         "ü",
    719                                                         "Ä",
    720                                                         "Ö",
    721                                                         "Ü",
    722                                                         "ß",
     716                                                        "�",
     717                                                        "�",
     718                                                        "�",
     719                                                        "�",
     720                                                        "�",
     721                                                        "�",
     722                                                        "�",
    723723                                                );
    724724
    725725                $text = preg_replace($search,$replace,$document);
     
    12471247        }
    12481248}
    12491249endif;
    1250 ?>
  • wp-includes/classes.php

     
    16821682       
    16831683}
    16841684
    1685 ?>
  • wp-includes/comment-template.php

     
    13961396        $in_comment_loop = false;
    13971397}
    13981398
    1399 ?>
  • wp-includes/comment.php

     
    17091709        return $open;
    17101710}
    17111711
    1712 ?>
  • wp-includes/default-filters.php

     
    210210
    211211add_filter('pre_option_gmt_offset','wp_timezone_override_offset');
    212212
    213 ?>
  • wp-includes/deprecated.php

     
    16901690        the_author_meta('ID');
    16911691}
    16921692
    1693 ?>
    1694  No newline at end of file
  • wp-includes/formatting.php

     
    26882688        return $str;
    26892689}
    26902690
    2691 ?>
  • wp-includes/functions.php

     
    33713371
    33723372        update_option('wp_trash_meta', $trash_meta);
    33733373}
    3374 ?>
    3375  No newline at end of file
  • wp-includes/general-template.php

     
    20452045        return apply_filters( "get_the_generator_{$type}", $gen, $type );
    20462046}
    20472047
    2048 ?>
  • wp-includes/gettext.php

     
    397397
    398398}
    399399
    400 ?>
    401  No newline at end of file
  • wp-includes/http.php

     
    20932093        return $response['body'];
    20942094}
    20952095
    2096 ?>
  • wp-includes/l10n.php

     
    424424function translate_user_role( $name ) {
    425425        return translate_with_gettext_context( before_last_bar($name), 'User role' );
    426426}
    427 ?>
  • wp-includes/link-template.php

     
    18251825        echo "<link rel='canonical' href='$link' />\n";
    18261826}
    18271827
    1828 ?>
  • wp-includes/locale.php

     
    332332        }
    333333}
    334334
    335 ?>
  • wp-includes/plugin.php

     
    695695                return $function[0].$function[1];
    696696}
    697697
    698 ?>
  • wp-includes/query.php

     
    27012701        return true;
    27022702}
    27032703
    2704 ?>
  • wp-includes/registration-functions.php

     
    66 */
    77_deprecated_file( basename(__FILE__), '0.0', 'registration.php' );
    88require_once(ABSPATH . WPINC .  '/registration.php');
    9 ?>
  • wp-includes/registration.php

     
    318318        return apply_filters('user_contactmethods',$user_contactmethods);
    319319}
    320320
    321 ?>
  • wp-includes/rewrite.php

     
    19431943        }
    19441944}
    19451945
    1946 ?>
  • wp-includes/rss-functions.php

     
    77
    88_deprecated_file( basename(__FILE__), '0.0', 'rss.php' );
    99require_once (ABSPATH . WPINC . '/rss.php');
    10 ?>
  • wp-includes/rss.php

     
    919919}
    920920endif;
    921921
    922 ?>
  • wp-includes/shortcodes.php

     
    294294
    295295add_filter('the_content', 'do_shortcode', 11); // AFTER wpautop()
    296296
    297 ?>
    298  No newline at end of file
  • wp-includes/streams.php

     
    188188}
    189189
    190190
    191 ?>
  • wp-includes/taxonomy.php

     
    23492349        return false;
    23502350}
    23512351
    2352 ?>
  • wp-includes/template-loader.php

     
    7575        }
    7676}
    7777
    78 ?>
    79  No newline at end of file
  • wp-includes/theme.php

     
    11451145        add_action('admin_menu', array(&$GLOBALS['custom_image_header'], 'init'));
    11461146}
    11471147
    1148 ?>
  • wp-includes/update.php

     
    331331if ( !wp_next_scheduled('wp_update_themes') && !defined('WP_INSTALLING') )
    332332        wp_schedule_event(time(), 'twicedaily', 'wp_update_themes');
    333333
    334 ?>
  • wp-includes/user.php

     
    600600        wp_cache_add($user->user_nicename, $user->ID, 'userslugs');
    601601}
    602602
    603 ?>
  • wp-includes/vars.php

     
    8181$is_iis7 = (strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS/7.') !== false);
    8282
    8383
    84 ?>
    85  No newline at end of file
  • wp-includes/wp-db.php

     
    11211121         */
    11221122        $wpdb = new wpdb(DB_USER, DB_PASSWORD, DB_NAME, DB_HOST);
    11231123}
    1124 ?>
  • wp-includes/wp-diff.php

     
    468468
    469469}
    470470
    471 ?>
  • wp-includes/js/tinymce/plugins/spellchecker/config.php

     
    33 * config.php
    44 * @package MCManager.includes
    55 * @author Moxiecode
    6  * @copyright Copyright © 2007, Moxiecode Systems AB, All rights reserved.
     6 * @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved.
    77 */
    88        // General settings
    99        $config['general.engine'] = 'GoogleSpell';
     
    2525        // Windows PSpellShell settings
    2626        //$config['PSpellShell.aspell'] = '"c:\Program Files\Aspell\bin\aspell.exe"';
    2727        //$config['PSpellShell.tmp'] = 'c:/temp';
    28 ?>
  • wp-includes/js/tinymce/plugins/spellchecker/rpc.php

     
    44 *
    55 * @package MCManager.includes
    66 * @author Moxiecode
    7  * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010require_once("./includes/general.php");
     
    109109// Return JSON encoded string
    110110echo $json->encode($output);
    111111
    112 ?>
    113  No newline at end of file
  • wp-includes/js/tinymce/plugins/spellchecker/classes/EnchantSpell.php

     
    66 *
    77 * @package MCManager.includes
    88 * @author Moxiecode
    9  * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
     9 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved.
    1010 */
    1111
    1212class EnchantSpell extends SpellChecker {
     
    6464        }
    6565}
    6666
    67 ?>
    68  No newline at end of file
  • wp-includes/js/tinymce/plugins/spellchecker/classes/GoogleSpell.php

     
    44 *
    55 * @package MCManager.includes
    66 * @author Moxiecode
    7  * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010class GoogleSpell extends SpellChecker {
     
    156156        }
    157157}
    158158
    159 ?>
    160  No newline at end of file
  • wp-includes/js/tinymce/plugins/spellchecker/classes/PSpell.php

     
    44 *
    55 * @package MCManager.includes
    66 * @author Moxiecode
    7  * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010class PSpell extends SpellChecker {
     
    7979        }
    8080}
    8181
    82 ?>
  • wp-includes/js/tinymce/plugins/spellchecker/classes/PSpellShell.php

     
    44 *
    55 * @package MCManager.includes
    66 * @author Moxiecode
    7  * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010class PSpellShell extends SpellChecker {
     
    110110        }
    111111}
    112112
    113 ?>
    114  No newline at end of file
  • wp-includes/js/tinymce/plugins/spellchecker/classes/SpellChecker.php

     
    44 *
    55 * @package MCManager.includes
    66 * @author Moxiecode
    7  * @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2004-2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010class SpellChecker {
     
    5959        }
    6060}
    6161
    62 ?>
  • wp-includes/js/tinymce/plugins/spellchecker/classes/utils/JSON.php

     
    44 *
    55 * @package MCManager.utils
    66 * @author Moxiecode
    7  * @copyright Copyright © 2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010define('JSON_BOOL', 1);
     
    592592        }
    593593}
    594594
    595 ?>
  • wp-includes/js/tinymce/plugins/spellchecker/classes/utils/Logger.php

     
    44 *
    55 * @package MCFileManager.filesystems
    66 * @author Moxiecode
    7  * @copyright Copyright © 2005, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2005, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010// File type contstants
     
    265265        }
    266266}
    267267
    268 ?>
    269  No newline at end of file
  • wp-includes/js/tinymce/plugins/spellchecker/includes/general.php

     
    44 *
    55 * @package MCManager.includes
    66 * @author Moxiecode
    7  * @copyright Copyright © 2007, Moxiecode Systems AB, All rights reserved.
     7 * @copyright Copyright � 2007, Moxiecode Systems AB, All rights reserved.
    88 */
    99
    1010@error_reporting(E_ALL ^ E_NOTICE);
     
    9595        $log->fatal(implode(', ', $args));
    9696}
    9797
    98 ?>
    99  No newline at end of file
  • wp-includes/pomo/entry.php

     
    6767                return is_null($this->context)? $this->singular : $this->context.chr(4).$this->singular;
    6868        }
    6969}
    70 ?>
  • wp-includes/pomo/mo.php

     
    182182
    183183
    184184}
    185 ?>
  • wp-includes/pomo/po.php

     
    357357                return $s;
    358358        }
    359359}
    360 ?>
  • wp-includes/pomo/streams.php

     
    134134        }
    135135}
    136136
    137 ?>
  • wp-includes/pomo/translations.php

     
    196196       
    197197}
    198198
    199 ?>