summaryrefslogtreecommitdiff
path: root/includes/xmlrpc.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-01-21 22:57:43 +0000
committerDries Buytaert <dries@buytaert.net>2003-01-21 22:57:43 +0000
commit4dac201e7c447a1f7e09d7972a14f517bbbf3edc (patch)
tree81f5f403434874e001d263130a3bafb815ee4c69 /includes/xmlrpc.inc
parentc52a3feafeab874cab7c8304b08cf3dd4887792b (diff)
downloadbrdo-4dac201e7c447a1f7e09d7972a14f517bbbf3edc.tar.gz
brdo-4dac201e7c447a1f7e09d7972a14f517bbbf3edc.tar.bz2
- Patch by Ulf: XHTML-ified the code.
Diffstat (limited to 'includes/xmlrpc.inc')
-rw-r--r--includes/xmlrpc.inc24
1 files changed, 12 insertions, 12 deletions
diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc
index db6d68b36..d9f53bc38 100644
--- a/includes/xmlrpc.inc
+++ b/includes/xmlrpc.inc
@@ -644,8 +644,8 @@ class xmlrpcmsg {
$xmlrpc_value=new xmlrpcval;
if ($this->debug)
- print "<PRE>---GOT---\n" . htmlspecialchars($data) .
- "\n---END---\n</PRE>";
+ print "<pre>---GOT---\n" . htmlspecialchars($data) .
+ "\n---END---\n</pre>";
if ($data=="") {
error_log("No response received from server.");
$r=new xmlrpcresp(0, $xmlrpcerr["no_data"],
@@ -701,9 +701,9 @@ class xmlrpcmsg {
}
xml_parser_free($parser);
if ($this->debug) {
- print "<PRE>---EVALING---[" .
+ print "<pre>---EVALING---[" .
strlen($_xh[$parser]['st']) . " chars]---\n" .
- htmlspecialchars($_xh[$parser]['st']) . ";\n---END---</PRE>";
+ htmlspecialchars($_xh[$parser]['st']) . ";\n---END---</pre>";
}
if (strlen($_xh[$parser]['st'])==0) {
// then something odd has happened
@@ -752,12 +752,12 @@ class xmlrpcval {
global $xmlrpcTypes, $xmlrpcBoolean;
if ($this->mytype==1) {
- echo "<B>xmlrpcval</B>: scalar can have only one value<BR>";
+ echo "<b>xmlrpcval</b>: scalar can have only one value<br />";
return 0;
}
$typeof=$xmlrpcTypes[$type];
if ($typeof!=1) {
- echo "<B>xmlrpcval</B>: not a scalar type (${typeof})<BR>";
+ echo "<b>xmlrpcval</b>: not a scalar type (${typeof})<br />";
return 0;
}
@@ -787,8 +787,8 @@ class xmlrpcval {
function addArray($vals) {
global $xmlrpcTypes;
if ($this->mytype!=0) {
- echo "<B>xmlrpcval</B>: already initialized as a [" .
- $this->kindOf() . "]<BR>";
+ echo "<b>xmlrpcval</b>: already initialized as a [" .
+ $this->kindOf() . "]<br />";
return 0;
}
@@ -800,8 +800,8 @@ class xmlrpcval {
function addStruct($vals) {
global $xmlrpcTypes;
if ($this->mytype!=0) {
- echo "<B>xmlrpcval</B>: already initialized as a [" .
- $this->kindOf() . "]<BR>";
+ echo "<b>xmlrpcval</b>: already initialized as a [" .
+ $this->kindOf() . "]<br />";
return 0;
}
$this->mytype=$xmlrpcTypes["struct"];
@@ -812,10 +812,10 @@ class xmlrpcval {
function dump($ar) {
reset($ar);
while ( list( $key, $val ) = each( $ar ) ) {
- echo "$key => $val<br>";
+ echo "$key => $val<br />";
if ($key == 'array')
while ( list( $key2, $val2 ) = each( $val ) ) {
- echo "-- $key2 => $val2<br>";
+ echo "-- $key2 => $val2<br />";
}
}
}