From 899ad6cad91c8682455c96e07c638edd7aba268a Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 10 May 2005 03:46:33 +0000 Subject: [PATCH] ksort() the $return array so tags are in order --- xml.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xml.php b/xml.php index 3e7f7f5..e2bd77a 100644 --- a/xml.php +++ b/xml.php @@ -168,6 +168,9 @@ class XML_Parser } } + // place the normal order on things + ksort($return); + // done... send the results back return $return; } -- 2.22.5