Show
Ignore:
Timestamp:
12/10/10 12:51:10 (2 years ago)
Author:
p_lindheimer
Message:

adds xml syntax checking to publish.pl

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • contributed_modules/modules/publish.pl

    r9997 r10695  
    2222  } 
    2323  next if (!-d $moddir); 
     24  # Check the XML integrity using the FreePBX XML parser 
     25  if (system("./check_xml.php $moddir")) { 
     26    die "Fatal syntax error with $moddir module.xml file, aborting\n"; 
     27  } 
    2428  open FH, "$moddir/module.xml";  
    2529  $newxml = "";