mirror of
https://github.com/kcozens/OpenSimSearch.git
synced 2026-08-14 08:52:28 +00:00
[FIXED VERSION]
Added group support to the parser.php so we can safely parse group owned parcels as well git-svn-id: http://forge.opensimulator.org/svn/ossearch/trunk@116 109abde3-1f22-4c10-b5d7-b6b0135cd00c
This commit is contained in:
+9
-1
@@ -210,7 +210,15 @@ function parse($hostname, $port)
|
||||
// Adding support for groups
|
||||
|
||||
$group = $value->getElementsByTagName("group")->item(0);
|
||||
$groupuuid = $group->getElementsByTagName("groupuuid")->item(0)->nodeValue;
|
||||
|
||||
if ($group != "")
|
||||
{
|
||||
$groupuuid = $group->getElementsByTagName("groupuuid")->item(0)->nodeValue;
|
||||
}
|
||||
else
|
||||
{
|
||||
$groupuuid = "00000000-0000-0000-0000-000000000000";
|
||||
}
|
||||
|
||||
//
|
||||
// Check bits on Public, Build, Script
|
||||
|
||||
Reference in New Issue
Block a user