Skip to content

Commit

Permalink
Display time of procedure execution
Browse files Browse the repository at this point in the history
  • Loading branch information
vrana committed Jan 30, 2020
1 parent 6d39f29 commit fe9ea18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adminer/call.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@
if (is_object($result)) {
select($result, $connection2);
} else {
echo "<p class='message'>" . lang('Routine has been called, %d row(s) affected.', $affected) . "\n";
echo "<p class='message'>" . lang('Routine has been called, %d row(s) affected.', $affected)
. " <span class='time'>" . @date("H:i:s") . "</span>\n" // @ - time zone may be not set
;
}
} while ($connection->next_result());

Expand Down
1 change: 1 addition & 0 deletions changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Adminer 4.7.6-dev:
Speed up alter table form (regression from 4.4.0)
Fix clicking on non-input fields in alter table (regression from 4.6.2)
Display time of procedure execution
MySQL: Always set foreign_key_checks in export
Editor: Fix focusing foreign key search in select

Expand Down

0 comments on commit fe9ea18

Please sign in to comment.