Skip to content

Commit 398c3af

Browse files
committedDec 5, 2011
Remove old WebGUI::Utility isIn and replace with smart match.
1 parent d1f3d07 commit 398c3af

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎lib/WebGUI/Asset/Wobject/Dashboard.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ sub view {
370370
push(@found, $child->getId);
371371
##Filter based on visibility
372372
next CHILD unless $child->canView;
373-
next CHILD if isIn($asset, @hidden);
373+
next CHILD if $asset ~~ @hidden;
374374
##Detect child types
375375
my $is_shortcut = $child->isa('WebGUI::Asset::Shortcut');
376376
my $is_dashlet = $child->can('getOverrideFormDefinition');

‎share/upgrades/7.10.23-8.0.0/zzzz_convertToInnoDb.pl

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
TABLE: while ( my $table = $get_table->fetchrow_hashref() ) {
99
next TABLE if $table->{TABLE_NAME} eq 'assetIndex';
1010
session->db->write("ALTER TABLE ". dbh->quote_identifier($table->{TABLE_NAME}). " ENGINE=InnoDB");
11+
session->log->warn($table->{TABLE_NAME});
1112
}
1213

1314

0 commit comments

Comments
 (0)
Please sign in to comment.