Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
weblate committed Jan 14, 2014
2 parents 79e04a0 + 23734af commit 7363ed1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ChangeLog
Expand Up @@ -24,6 +24,8 @@ phpMyAdmin - ChangeLog
- bug #4223 Database list: Create database misses collation column
- bug #4224 Empty table names when a table is "inuse"
- bug #4225 Partition maintenance broken
- bug #4219 Table list (left panel) does not reload when table renamed
- bug #4230 "in use" displayed for all views in database print view

4.1.4.0 (2014-01-07)
- bug #3840 (additional fix) When exporting to gzip format, the data is compressed 2 times
Expand Down
4 changes: 3 additions & 1 deletion db_printview.php
Expand Up @@ -94,7 +94,9 @@
} // end if
} else {
echo '<td colspan="3" class="center">';
echo __('in use');
if (! PMA_Table::isView($db, $sts_data['TABLE_NAME'])) {
echo __('in use');
}
echo '</td>';
}
echo '<td>';
Expand Down

0 comments on commit 7363ed1

Please sign in to comment.