Forgot to add <abbr> tags

This commit is contained in:
lorilee
2010-07-19 17:00:29 -07:00
parent ed20d1ebd1
commit a37b66bde5

View File

@@ -243,7 +243,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
// for the case ENUM('&#8211;','&ldquo;') // for the case ENUM('&#8211;','&ldquo;')
$type = htmlspecialchars($type); $type = htmlspecialchars($type);
if(strlen($type) > $GLOBALS['cfg']['LimitChars']) { if(strlen($type) > $GLOBALS['cfg']['LimitChars']) {
$type = substr($type, 0, $GLOBALS['cfg']['LimitChars']); $type = '<abbr title="full text">' . substr($type, 0, $GLOBALS['cfg']['LimitChars']) . '</abbr>';
} }
$type_nowrap = ''; $type_nowrap = '';