Skip to content

Commit

Permalink
Use standard view detection in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Apr 27, 2013
1 parent 8ae8507 commit fd5e6ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adminer/schema.inc.php
Expand Up @@ -17,7 +17,7 @@
$referenced = array(); // target_table => array(table => array(left => target_column))
$lefts = array(); // float => bool
foreach (table_status() as $table => $table_status) {
if (!isset($table_status["Engine"])) { // view
if (is_view($table_status)) {
continue;
}
$pos = 0;
Expand Down

0 comments on commit fd5e6ef

Please sign in to comment.