Make WordPress Core


Ignore:
Timestamp:
05/25/2008 03:50:15 PM (18 years ago)
Author:
ryan
Message:

File file level phpdoc from jacobsantos. see #7037

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-trackback.php

    r7971 r7991  
    11<?php
     2/**
     3 * Handle Trackbacks and Pingbacks sent to WordPress
     4 *
     5 * @package WordPress
     6 */
    27
    38if (empty($wp)) {
     
    611}
    712
     13/**
     14 * trackback_response() - Respond with error or success XML message
     15 *
     16 * @param int|bool $error Whether there was an error or not
     17 * @param string $error_message Error message if an error occurred
     18 */
    819function trackback_response($error = 0, $error_message = '') {
    920    header('Content-Type: text/xml; charset=' . get_option('blog_charset') );
Note: See TracChangeset for help on using the changeset viewer.