1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-05 20:58:40 +03:00

We now use <anchor/> instead of just <anchor> (strict XML syntax)

(This used to be commit 7c00fff475e15a9e9d5c3d2c8394a2cdc1b90cac)
This commit is contained in:
Jelmer Vernooij 2003-02-27 02:17:54 +00:00
parent d21b15ff57
commit 742dcedfa2

View File

@ -30,7 +30,7 @@ close(IN);
open(IN,$topdir.$doc_file) || die("Can't open $topdir$doc_file");
while(<IN>) {
if( /<term><anchor id="([^"]*)">([^<]*?)([ ]*)\(.\)([ ]*)<\/term>/g ) {
if( /<term><anchor id="([^"]*)"\/>([^<]*?)([ ]*)\(.\)([ ]*)<\/term>/g ) {
$key = $1;
$value = $2;
$doc{$value} = $key;