Make WordPress Core

Changeset 6493


Ignore:
Timestamp:
12/25/2007 08:48:01 PM (17 years ago)
Author:
ryan
Message:

Some file level phpdoc from darkdragon. fixes #5527

Location:
trunk/wp-includes
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/default-filters.php

    r6339 r6493  
    11<?php
     2/**
     3 * Sets up the default filters and actions for most
     4 * of the WordPress hooks.
     5 *
     6 * If you need to remove a default hook, this file will
     7 * give you the priority for which to use to remove the
     8 * hook.
     9 *
     10 * Not all of the default hooks are found in default-filters.php
     11 *
     12 * @package WordPress
     13 */
    214
    315// Strip, trim, kses, special chars for string saves
  • trunk/wp-includes/feed-atom-comments.php

    r6414 r6493  
    11<?php
     2/**
     3 * Atom Feed Template for displaying Atom Comments feed.
     4 *
     5 * @package WordPress
     6 */
     7
    28header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true);
    39echo '<?xml version="1.0" encoding="' . get_option('blog_charset') . '" ?' . '>';
  • trunk/wp-includes/feed-atom.php

    r6369 r6493  
    11<?php
     2/**
     3 * Atom Feed Template for displaying Atom Posts feed.
     4 *
     5 * @package WordPress
     6 */
     7
    28header('Content-Type: application/atom+xml; charset=' . get_option('blog_charset'), true);
    39$more = 1;
  • trunk/wp-includes/feed-rdf.php

    r6195 r6493  
    11<?php
     2/**
     3 * RSS 1 RDF Feed Template for displaying RSS 1 Posts feed.
     4 *
     5 * @package WordPress
     6 */
     7
    28header('Content-Type: application/rdf+xml; charset=' . get_option('blog_charset'), true);
    39$more = 1;
  • trunk/wp-includes/feed-rss.php

    r6195 r6493  
    11<?php
     2/**
     3 * RSS 0.92 Feed Template for displaying RSS 0.92 Posts feed.
     4 *
     5 * @package WordPress
     6 */
     7
    28header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    39$more = 1;
  • trunk/wp-includes/feed-rss2-comments.php

    r6278 r6493  
    11<?php
     2/**
     3 * RSS2 Feed Template for displaying RSS2 Comments feed.
     4 *
     5 * @package WordPress
     6 */
     7
    28header('Content-Type: text/xml;charset=' . get_option('blog_charset'), true);
    39
  • trunk/wp-includes/feed-rss2.php

    r6278 r6493  
    11<?php
     2/**
     3 * RSS2 Feed Template for displaying RSS2 Posts feed.
     4 *
     5 * @package WordPress
     6 */
     7
    28header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
    39$more = 1;
Note: See TracChangeset for help on using the changeset viewer.