]> git.mjollnir.org Git - moodle.git/commitdiff
mnet/xmlrpc/xmlparser: Fix code layout/alignment
authormartinlanghoff <martinlanghoff>
Thu, 4 Jan 2007 03:31:26 +0000 (03:31 +0000)
committermartinlanghoff <martinlanghoff>
Thu, 4 Jan 2007 03:31:26 +0000 (03:31 +0000)
Author: Donal McMullan <donal@catalyst.net.nz>

mnet/xmlrpc/xmlparser.php

index c1af97df1c0916d19708d3da54d232814d986c11..97069b5d40a4530073502a78cc5aa72d955bf6d3 100644 (file)
@@ -33,14 +33,14 @@ class mnet_encxml_parser {
         xml_set_element_handler($this->parser, "start_element", "end_element");
         xml_set_character_data_handler($this->parser, "discard_data");
 
-        $this->tag_number      = 0; // Just a unique ID for each tag
-        $this->digest         = '';
-        $this->remote_wwwroot  = '';
-        $this->signature      = '';
-        $this->data_object     = '';
-        $this->key_URI         = '';
+        $this->tag_number        = 0; // Just a unique ID for each tag
+        $this->digest            = '';
+        $this->remote_wwwroot    = '';
+        $this->signature         = '';
+        $this->data_object       = '';
+        $this->key_URI           = '';
         $this->payload_encrypted = false;
-        $this->cipher         = array();
+        $this->cipher            = array();
         return true;
     }