Make WordPress Core


Ignore:
Timestamp:
08/30/2004 07:16:40 AM (21 years ago)
Author:
saxmatt
Message:

Vanquishing the terror of iso-8859-1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r1570 r1575  
    573573function trackback_response($error = 0, $error_message = '') {
    574574    if ($error) {
    575         echo '<?xml version="1.0" encoding="iso-8859-1"?'.">\n";
     575        echo '<?xml version="1.0" encoding="utf-8"?'.">\n";
    576576        echo "<response>\n";
    577577        echo "<error>1</error>\n";
     
    579579        echo "</response>";
    580580    } else {
    581         echo '<?xml version="1.0" encoding="iso-8859-1"?'.">\n";
     581        echo '<?xml version="1.0" encoding="utf-8"?'.">\n";
    582582        echo "<response>\n";
    583583        echo "<error>0</error>\n";
Note: See TracChangeset for help on using the changeset viewer.