diff options
author | ivan <ivan> | 2004-05-04 18:44:49 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-05-04 18:44:49 +0000 |
commit | 2d9edbad34cf77f88e9622f57fa434092ede66ca (patch) | |
tree | d3737dd276cbc1d2081525f5cc9cac2e83952cac | |
parent | e2a2fa6bc69ec633667857a2f0552f4c67161765 (diff) |
don't truncate job args for display
-rw-r--r-- | FS/FS/queue.pm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/FS/FS/queue.pm b/FS/FS/queue.pm index 68a48634c..b21fb6572 100644 --- a/FS/FS/queue.pm +++ b/FS/FS/queue.pm @@ -352,9 +352,7 @@ END my $args; if ( $dangerous || $queue->job !~ /^FS::part_export::/ || !$noactions ) { - $args = encode_entities( join(' ', - map { length($_)<54 ? $_ : substr($_,0,32)."..." } $queue->args #1&g - ) ); + $args = encode_entities( join(' ', $queue->args) ); } else { $args = ''; } @@ -424,7 +422,7 @@ END =head1 VERSION -$Id: queue.pm,v 1.15.4.1 2004-03-03 13:44:27 ivan Exp $ +$Id: queue.pm,v 1.15.4.2 2004-05-04 18:44:49 ivan Exp $ =head1 BUGS |