remove WebGUI::Utility::isIn

This commit is contained in:
Graham Knop 2010-09-07 12:33:15 -05:00
parent 0e754a51e4
commit 6aa26c2e44
61 changed files with 126 additions and 148 deletions

View file

@ -445,7 +445,7 @@ sub crud_updateTable {
my $sth = $db->read("DESCRIBE ".$tableName);
my $tableKey = $class->crud_getTableKey($session);
while (my ($col, $type, $null, $key, $default) = $sth->array) {
next if (isIn($col, $tableKey, 'lastUpdated', 'dateCreated','sequenceNumber'));
next if ($col ~~ [$tableKey, 'lastUpdated', 'dateCreated','sequenceNumber']);
$tableFields{$col} = {
type => $type,
null => $null,