Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-03-31 18:50:33 +0400
committerJo Michael <me@mynetx.net>2012-03-31 18:50:33 +0400
commit20ddd10911d6d3918ea870db3d62558759a1bbeb (patch)
tree5823b22bf0885d851e2dbe6eea046dfcf245115b /browse_foreigners.php
parentfc7a1339fc850291c54e7baaabce415b043e5e07 (diff)
Replaced HTML nowrap attribute with CSS for HTML5 validity
Diffstat (limited to 'browse_foreigners.php')
-rw-r--r--browse_foreigners.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/browse_foreigners.php b/browse_foreigners.php
index 9579edcb44..a125ff6199 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -249,7 +249,7 @@ if (is_array($foreignData['disp_row'])) {
?>
<tr class="noclick <?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
- <td nowrap="nowrap">
+ <td class="nowrap">
<?php
echo ($key_ordered_current_equals_data ? '<strong>' : '')
.'<a href="#" title="' . __('Use this value')
@@ -278,7 +278,7 @@ if (is_array($foreignData['disp_row'])) {
. '\', \'' . PMA_jsFormat($val_ordered_current_key, false) . '\'); return false;">'
. $val_ordered_current_val . '</a>' . ($val_ordered_current_equals_data ? '</strong>' : '');
?></td>
- <td nowrap="nowrap">
+ <td class="nowrap">
<?php
echo ($val_ordered_current_equals_data ? '<strong>' : '') . '<a href="#" title="'
. __('Use this value') . ($val_ordered_current_val_title != '' ? ': ' . $val_ordered_current_val_title : '')