We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1f3d07 commit 398c3afCopy full SHA for 398c3af
lib/WebGUI/Asset/Wobject/Dashboard.pm
@@ -370,7 +370,7 @@ sub view {
370
push(@found, $child->getId);
371
##Filter based on visibility
372
next CHILD unless $child->canView;
373
- next CHILD if isIn($asset, @hidden);
+ next CHILD if $asset ~~ @hidden;
374
##Detect child types
375
my $is_shortcut = $child->isa('WebGUI::Asset::Shortcut');
376
my $is_dashlet = $child->can('getOverrideFormDefinition');
share/upgrades/7.10.23-8.0.0/zzzz_convertToInnoDb.pl
@@ -8,6 +8,7 @@
8
TABLE: while ( my $table = $get_table->fetchrow_hashref() ) {
9
next TABLE if $table->{TABLE_NAME} eq 'assetIndex';
10
session->db->write("ALTER TABLE ". dbh->quote_identifier($table->{TABLE_NAME}). " ENGINE=InnoDB");
11
+ session->log->warn($table->{TABLE_NAME});
12
}
13
14
0 commit comments