diff options
author | Till Kamppeter <tkamppeter@mandriva.com> | 2004-08-27 18:19:38 +0000 |
---|---|---|
committer | Till Kamppeter <tkamppeter@mandriva.com> | 2004-08-27 18:19:38 +0000 |
commit | 115642e472a721aee88a1ba7e4884c8de4799fac (patch) | |
tree | 00c9f3d4bd275be39c925fb908af127479ef6ca3 /perl-install/printer/cups.pm | |
parent | bf4f9fc6e28a877fc9bd0640d31e0af73120f869 (diff) | |
download | drakx-115642e472a721aee88a1ba7e4884c8de4799fac.tar drakx-115642e472a721aee88a1ba7e4884c8de4799fac.tar.gz drakx-115642e472a721aee88a1ba7e4884c8de4799fac.tar.bz2 drakx-115642e472a721aee88a1ba7e4884c8de4799fac.tar.xz drakx-115642e472a721aee88a1ba7e4884c8de4799fac.zip |
- Made support for daemon-less CUPS client working.
- Fixed graying out of buttons/menu entries in the main window.
Diffstat (limited to 'perl-install/printer/cups.pm')
-rw-r--r-- | perl-install/printer/cups.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/printer/cups.pm b/perl-install/printer/cups.pm index ab9e28b21..79ca291b3 100644 --- a/perl-install/printer/cups.pm +++ b/perl-install/printer/cups.pm @@ -114,10 +114,10 @@ sub get_formatted_remote_queues { map { join('!', if_($printer->{expert}, N("CUPS")), N("Configured on other machines"), $_); } map { - my $comment = N("On CUPS server \"%s\"", $_->{ipp}) . ($_->{queuename} eq $printer->{DEFAULT} ? N(" (Default)") : ""); + my $comment = N("On CUPS server \"%s\"", ($_->{ipp} ? $_->{ipp} : $printer->{remote_cups_server})) . ($_->{queuename} eq $printer->{DEFAULT} ? N(" (Default)") : ""); "$_->{queuename}: $comment"; } grep { - $_->{ipp} && !$printer->{configured}{$_->{queuename}}; + !$printer->{configured}{$_->{queuename}}; } lpstat_v(); } |