}
} else {
$end = explode(" ", microtime());
- echo "<p class='time'>" . lang('%.3f s', max(0, $end[0] - $start[0] + $end[1] - $start[1])) . "\n";
+ $i = 0;
do {
$result = $dbh->store_result();
+ if (!$i) {
+ echo "<p class='time'>" . (is_object($result) ? lang('%d row(s)', $result->num_rows) . ", ": "") . lang('%.3f s', max(0, $end[0] - $start[0] + $end[1] - $start[1])) . "\n";
+ $i++;
+ }
if (is_object($result)) {
select($result, $dbh2);
} else {
Preselect now() for timestamp columns (thanks to paranoiq)
Clear history (thanks to paranoiq)
Prefill insert by foreign key searches
+Print number of rows in SQL command
Remove Delete button from Edit page - use mass operation for it
Faster multiple update, clone and delete
Faster table list in navigation
Download version checker and syntax highlighting from HTTPS
Use HTML Strict instead of XHTML
-Remove function minification for performance and customization
+Remove function minification in favor of performance and customization
Fix grant ALL PRIVILEGES with GRANT OPTION
Fix CSV import
Fix work with default values (thanks to Jiri Pospisil)