Changeset 222


Ignore:
Timestamp:
1999-04-01T12:35:54+12:00 (25 years ago)
Author:
sjboddie
Message:

Unfixed the 'bug'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/mgbuildproc.pm

    r215 r222  
    153153
    154154    # output a list of children
    155     my $children = $doc_obj->get_children ();
     155    my $children = $doc_obj->get_children ($section);
    156156    if (scalar(@$children) > 0) {
    157157        print $handle "<contains>";
     
    160160        print $handle ";" unless $firstchild;
    161161        $firstchild = 0;
    162         if ($child eq "") { print $handle "$doc_OID"; }
    163         else { print $handle "$doc_OID.$child"; }
     162        print $handle "\".$child";
     163#       if ($child eq "") { print $handle "$doc_OID"; }
     164#       elsif ($section eq "") { print $handle "$doc_OID.$child"; }
     165#       else { print $handle "$doc_OID.$section.$child"; }
    164166        }
    165167        print $handle "\n";
Note: See TracChangeset for help on using the changeset viewer.