*** empty log message ***

This commit is contained in:
Len Kranendonk 2004-02-25 08:47:52 +00:00
parent 97d254ea98
commit a3d4bfb5f4

View file

@ -148,6 +148,12 @@ sub www_editNavigation {
# The documented interface of HTMLForm::combo didn't work. However the old functional interface does...
$f->getTab("properties")->combo("startAt",$levels,WebGUI::International::get(25,'Navigation'),[$startAt]);
$f->getTab("properties")->selectList(
-name=>'method',
-label=>WebGUI::International::get(28,'Navigation'),
-options=>WebGUI::Navigation::getMethodNames(),
-value=>[$session{form}{method} || $config->{method}]
);
tie my %stopAtLevels, 'Tie::IxHash';
%stopAtLevels = ( '-1' => 'no limit',
'0' => '0. '.WebGUI::International::get(1,'Navigation'),
@ -186,12 +192,6 @@ sub www_editNavigation {
-options=>\%depths,
-value=>[$session{form}{depth} || $config->{depth}]
);
$f->getTab("properties")->selectList(
-name=>'method',
-label=>WebGUI::International::get(28,'Navigation'),
-options=>WebGUI::Navigation::getMethodNames(),
-value=>[$session{form}{method} || $config->{method}]
);
$f->getTab("properties")->yesNo(
-name=>'showSystemPages',
-label=>WebGUI::International::get(30,'Navigation'),