diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-19 00:49:57 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-11-24 11:00:44 +0100 |
commit | 07388acc2571db56faf3298062c821a0041d7e6c (patch) | |
tree | 2bafa2f1f635a34fd57b1926feaa349acd8af915 /bin | |
parent | ba7cef32bba8e92acda0543c6b1625077ed8d648 (diff) | |
download | drakx-net-07388acc2571db56faf3298062c821a0041d7e6c.tar drakx-net-07388acc2571db56faf3298062c821a0041d7e6c.tar.gz drakx-net-07388acc2571db56faf3298062c821a0041d7e6c.tar.bz2 drakx-net-07388acc2571db56faf3298062c821a0041d7e6c.tar.xz drakx-net-07388acc2571db56faf3298062c821a0041d7e6c.zip |
fix "undefined value for mandatory argument 'title'"
also reported by perl_checker ("not enough parameters")
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/drakhosts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/drakhosts b/bin/drakhosts index e613274..d93095c 100755 --- a/bin/drakhosts +++ b/bin/drakhosts @@ -86,7 +86,7 @@ sub add_modify_entry { # test if modify or add a host - my $dialog = _create_dialog(); + my $dialog = _create_dialog(''); $dialog->set_transient_for($::main_window); $dialog->set_title($title); $dialog->set_modal(1); |