Skip Menu |

This queue is for tickets about the PostScript-Simple-Table CPAN distribution.

Report information
The Basics
Id: 59188
Status: new
Priority: 0/
Queue: PostScript-Simple-Table

People
Owner: Nobody in particular
Requestors: spoon.reloaded [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.02
Fixed in: (no value)



Subject: eval() should be changed to hex()
$color[0] = eval "0x$1"; $color[1] = eval "0x$2"; $color[2] = eval "0x$3"; should be written as $color[0] = hex $1; $color[1] = hex $2; $color[2] = hex $3; because eval is dangerous