Index: trunk/phase3/trackback.php |
— | — | @@ -11,8 +11,7 @@ |
12 | 12 | */ |
13 | 13 | function XMLsuccess() { |
14 | 14 | header("Content-Type: application/xml; charset=utf-8"); |
15 | | - echo " |
16 | | -<?xml version=\"1.0\" encoding=\"utf-8\"?> |
| 15 | + echo "<?xml version=\"1.0\" encoding=\"utf-8\"?> |
17 | 16 | <response> |
18 | 17 | <error>0</error> |
19 | 18 | </response> |
— | — | @@ -23,8 +22,7 @@ |
24 | 23 | function XMLerror($err = "Invalid request.") { |
25 | 24 | header("HTTP/1.0 400 Bad Request"); |
26 | 25 | header("Content-Type: application/xml; charset=utf-8"); |
27 | | - echo " |
28 | | -<?xml version=\"1.0\" encoding=\"utf-8\"?> |
| 26 | + echo "<?xml version=\"1.0\" encoding=\"utf-8\"?> |
29 | 27 | <response> |
30 | 28 | <error>1</error> |
31 | 29 | <message>Invalid request: $err</message> |