Navigation Menu

Skip to content

Commit

Permalink
Remove old WebGUI::Utility isIn and replace with smart match.
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Dec 5, 2011
1 parent d1f3d07 commit 398c3af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WebGUI/Asset/Wobject/Dashboard.pm
Expand Up @@ -370,7 +370,7 @@ sub view {
push(@found, $child->getId);
##Filter based on visibility
next CHILD unless $child->canView;
next CHILD if isIn($asset, @hidden);
next CHILD if $asset ~~ @hidden;
##Detect child types
my $is_shortcut = $child->isa('WebGUI::Asset::Shortcut');
my $is_dashlet = $child->can('getOverrideFormDefinition');
Expand Down
1 change: 1 addition & 0 deletions share/upgrades/7.10.23-8.0.0/zzzz_convertToInnoDb.pl
Expand Up @@ -8,6 +8,7 @@
TABLE: while ( my $table = $get_table->fetchrow_hashref() ) {
next TABLE if $table->{TABLE_NAME} eq 'assetIndex';
session->db->write("ALTER TABLE ". dbh->quote_identifier($table->{TABLE_NAME}). " ENGINE=InnoDB");
session->log->warn($table->{TABLE_NAME});
}


Expand Down

0 comments on commit 398c3af

Please sign in to comment.