aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorTristan Darricau <tristan.darricau@sensiolabs.com>2015-09-09 11:02:22 +0200
committerTristan Darricau <tristan.darricau@sensiolabs.com>2015-09-09 11:02:22 +0200
commitb83ce0a702583aec717a7be6363b950b63a45f45 (patch)
treed51c944d6e163140fe72c7ee6b239cf992ca8d62 /phpBB/includes/functions.php
parent23205ca0cc8c71e17b4a514dffb474e9c28bd585 (diff)
parentb4dbb5b249f7856c7ac9c38f6be3c8244a974f95 (diff)
downloadforums-b83ce0a702583aec717a7be6363b950b63a45f45.tar
forums-b83ce0a702583aec717a7be6363b950b63a45f45.tar.gz
forums-b83ce0a702583aec717a7be6363b950b63a45f45.tar.bz2
forums-b83ce0a702583aec717a7be6363b950b63a45f45.tar.xz
forums-b83ce0a702583aec717a7be6363b950b63a45f45.zip
Merge pull request #3876 from VSEphpbb/ticket/14138
[ticket/14138] Use span tags instead of abbr * VSEphpbb/ticket/14138: [ticket/14138] Use span tags instead of abbr
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index f3dfc01156..311208baf3 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -4502,10 +4502,10 @@ function phpbb_generate_debug_output(\phpbb\db\driver\driver_interface $db, \php
if (isset($GLOBALS['starttime']))
{
$totaltime = microtime(true) - $GLOBALS['starttime'];
- $debug_info[] = sprintf('<abbr title="SQL time: %.3fs / PHP time: %.3fs">Time: %.3fs</abbr>', $db->get_sql_time(), ($totaltime - $db->get_sql_time()), $totaltime);
+ $debug_info[] = sprintf('<span title="SQL time: %.3fs / PHP time: %.3fs">Time: %.3fs</span>', $db->get_sql_time(), ($totaltime - $db->get_sql_time()), $totaltime);
}
- $debug_info[] = sprintf('<abbr title="Cached: %d">Queries: %d</abbr>', $db->sql_num_queries(true), $db->sql_num_queries());
+ $debug_info[] = sprintf('<span title="Cached: %d">Queries: %d</span>', $db->sql_num_queries(true), $db->sql_num_queries());
$memory_usage = memory_get_peak_usage();
if ($memory_usage)