Help for this page

Select Code to Download


  1. or download this
    # Before
    $sn->{'SourceDBType'} ||= 'XML';
    
    # After
    $sn->findvalue('SourceDBType') || ($sn->find('SourceDBType') ? $sn->fi
    +nd('SourceDBType')->setData('XML') : $sn->addNewChild(undef, 'SourceD
    +BType')->setData('XML'));