Show
Ignore:
Timestamp:
05/25/08 15:50:15 (3 months ago)
Author:
ryan
Message:

File file level phpdoc from jacobsantos. see #7037

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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') );