Hello,

When i want to define a multi argument configuration directive using
perl, i have to use an array variable:

@DirectoryIndex = ("foo", "bar");


But if this directive is used inside a section, i have to use an
anonymous array:

$Directory{"flup} = {
    DirectoryIndex => [ "foo", "bar" ]
};


I think this is quite inconsistent. I suggest, at least, making it
possible to use the form

$DirectoryIndex = ["foo", "bar"];

for repeating and non repeating multiple-argument directives.

Comments?

    --Nikolaus



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to