Subject: | Possible problem with modify() on column number 0 |
I have not verified this as a problem, but having researched modify() for another problem, this code line looks 'wrong'.
DBIx::XHTML_Table 1.36 line reads
$cols ||= 'global';
If a single column number of zero is supplied won't that be overwritten with 'global'? Perhaps the line should read
$cols = 'global' unless defined $cols;