Revert misguided namespacing change on Not Found properties.

This commit is contained in:
Andrew McMillan 2009-12-27 14:15:04 +13:00
parent e742238e9a
commit 5055d28c07

View File

@ -1235,7 +1235,7 @@ EOQRY;
$status = new XMLElement('status', 'HTTP/1.1 404 Not Found' );
$noprop = new XMLElement('prop');
foreach( $not_found AS $k => $v ) {
$reply->NSElement($noprop, $v);
$noprop->NewElement($v);
}
$elements[] = new XMLElement( 'propstat', array( $noprop, $status) );
}