freeside/FS/FS queue.pm,1.17,1.18
ivan
ivan at pouncequick.420.am
Tue May 4 11:45:01 PDT 2004
Update of /home/cvs/cvsroot/freeside/FS/FS
In directory pouncequick:/tmp/cvs-serv26226
Modified Files:
queue.pm
Log Message:
don't truncate job args for display
Index: queue.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/queue.pm,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- queue.pm 3 Mar 2004 13:42:08 -0000 1.17
+++ queue.pm 4 May 2004 18:44:48 -0000 1.18
@@ -352,9 +352,7 @@
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 = '';
}
More information about the freeside-commits
mailing list