Commit f3392b0b authored by mku's avatar mku

ZP-467 #comment Process ItemOperations:Schema tag #time 45m

git-svn-id: https://z-push.org/svn/z-push/trunk@1786 b7dd7b3b-3a3c-0410-9da9-bee62a6cc5b5
parent 117030c7
......@@ -182,6 +182,19 @@ class ItemOperations extends RequestProcessor {
return false;
}
if(self::$decoder->getElementStartTag(SYNC_ITEMOPERATIONS_SCHEMA)) {
// read schema tags
while (1) {
// TODO save elements
$el = self::$decoder->getElement();
$e = self::$decoder->peek();
if($e[EN_TYPE] == EN_TYPE_ENDTAG) {
self::$decoder->getElementEndTag();
break;
}
}
}
//break if it reached the endtag
$e = self::$decoder->peek();
if($e[EN_TYPE] == EN_TYPE_ENDTAG) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment