summaryrefslogtreecommitdiffstats
path: root/web_wizard
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2003-12-18 14:31:21 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2003-12-18 14:31:21 +0000
commit00ae7978db51f8fcb374ec5a73d4f481f9b30008 (patch)
tree9685fdce0f3c0fef286ea735f26534ca4a7717c0 /web_wizard
parent558c53d650f4a94bf6f85318439c8308a306cbbf (diff)
downloaddrakwizard-00ae7978db51f8fcb374ec5a73d4f481f9b30008.tar
drakwizard-00ae7978db51f8fcb374ec5a73d4f481f9b30008.tar.gz
drakwizard-00ae7978db51f8fcb374ec5a73d4f481f9b30008.tar.bz2
drakwizard-00ae7978db51f8fcb374ec5a73d4f481f9b30008.tar.xz
drakwizard-00ae7978db51f8fcb374ec5a73d4f481f9b30008.zip
fix too long label
Diffstat (limited to 'web_wizard')
-rwxr-xr-xweb_wizard/Apache.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/web_wizard/Apache.pm b/web_wizard/Apache.pm
index e23c12fa..742c4ac7 100755
--- a/web_wizard/Apache.pm
+++ b/web_wizard/Apache.pm
@@ -88,8 +88,8 @@ $o->{pages} = {
name => N("Modules :") . "\n\n" . N("* User module : allows users to have a directory in their home directories available on your http server via http://www.yourserver.com/~user, you will be asked for the name of this directory afterward."),
pre => sub { $o->{var}{user_mod} = is_last_user_mod() },
data => [
- { text => N("Allows users to get a directory in their homes directories
-available on your http server via http://www.yourserver.com/~user."), type => 'bool', val => \$o->{var}{user_mod} },
+ { text => join("\n", warp_text(N("Allows users to get a directory in their homes directories
+available on your http server via http://www.yourserver.com/~user."), 50)), type => 'bool', val => \$o->{var}{user_mod} },
],
post => sub { return 'user_dir' if $o->{var}{user_mod} },
next => 'ask_dir'