Changeset 7991 for trunk/wp-trackback.php
- Timestamp:
- 05/25/2008 03:50:15 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-trackback.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-trackback.php
r7971 r7991 1 1 <?php 2 /** 3 * Handle Trackbacks and Pingbacks sent to WordPress 4 * 5 * @package WordPress 6 */ 2 7 3 8 if (empty($wp)) { … … 6 11 } 7 12 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 */ 8 19 function trackback_response($error = 0, $error_message = '') { 9 20 header('Content-Type: text/xml; charset=' . get_option('blog_charset') );
Note: See TracChangeset
for help on using the changeset viewer.