blob: 18752b9e0fbd45839891301845f721a088a1b3b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
diff --git a/Documentation/Utilities/webbuilder.pl.in b/Documentation/Utilities/webbuilder.pl.in
index ea9de63..c000432 100644
--- a/Documentation/Utilities/webbuilder.pl.in
+++ b/Documentation/Utilities/webbuilder.pl.in
@@ -68,11 +68,7 @@ sub convert
sub print_head
{
my ($xml_head, $file) = @ARG;
- my $ml, $buffer;
-
- # Don't know what this does, but Perceps does it:
- if ($*) { $ml=1; }
- else { $ml=0; }
+ my $buffer;
# Read theme from disk and execute it:
if ( -e $file )
@@ -93,11 +89,7 @@ sub print_head
sub print_body
{
my ($xml_body, $file) = @ARG;
- my $ml, $buffer;
-
- # Don't know what this does, but Perceps does it:
- if ($*) { $ml=1; }
- else { $ml=0; }
+ my $buffer;
# Read theme from disk and execute it:
if ( -e $file )
|