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:
authorMarc Delisle <marc@infomarc.info>2008-07-09 19:24:44 +0400
committerMarc Delisle <marc@infomarc.info>2008-07-09 19:24:44 +0400
commitfe78d240bb43302798937b5c36dbcc37e8016ffa (patch)
tree43e29c0a10496c0167a883493cdae572ce891f4b /browse_foreigners.php
parent1f1013b3ce027857b835a47236395516aa358d73 (diff)
b to strong, and remove bold for MySQL charset
Diffstat (limited to 'browse_foreigners.php')
-rw-r--r--browse_foreigners.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/browse_foreigners.php b/browse_foreigners.php
index ed04583dc3..db9947d907 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -242,20 +242,20 @@ if (is_array($foreignData['disp_row'])) {
<tr class="<?php echo $odd_row ? 'odd' : 'even'; $odd_row = ! $odd_row; ?>">
<td nowrap="nowrap">
<?php
- echo ($key_ordered_current_equals_data ? '<b>' : '')
+ echo ($key_ordered_current_equals_data ? '<strong>' : '')
.'<a href="#" title="' . $strUseThisValue
. ($key_ordered_current_val_title != '' ? ': ' . $key_ordered_current_val_title : '') . '"'
.' onclick="formupdate(\'' . md5($field) . '\', \''
. PMA_jsFormat($key_ordered_current_key, false) . '\'); return false;">'
- .htmlspecialchars($key_ordered_current_key) . '</a>' . ($key_ordered_current_equals_data ? '</b>' : '');
+ .htmlspecialchars($key_ordered_current_key) . '</a>' . ($key_ordered_current_equals_data ? '</strong>' : '');
?></td>
<td>
<?php
- echo ($key_ordered_current_equals_data ? '<b>' : '')
+ echo ($key_ordered_current_equals_data ? '<strong>' : '')
. '<a href="#" title="' . $strUseThisValue . ($key_ordered_current_val_title != '' ? ': '
. $key_ordered_current_val_title : '') . '" onclick="formupdate(\''
. md5($field) . '\', \'' . PMA_jsFormat($key_ordered_current_key, false) . '\'); return false;">'
- . $key_ordered_current_val . '</a>' . ($key_ordered_current_equals_data ? '</b>' : '');
+ . $key_ordered_current_val . '</a>' . ($key_ordered_current_equals_data ? '</strong>' : '');
?></td>
<td width="20%">
<img src="<?php echo $GLOBALS['pmaThemeImage'] . 'spacer.png'; ?>"
@@ -263,19 +263,19 @@ if (is_array($foreignData['disp_row'])) {
<td>
<?php
- echo ($val_ordered_current_equals_data ? '<b>' : '')
+ echo ($val_ordered_current_equals_data ? '<strong>' : '')
. '<a href="#" title="' . $strUseThisValue . ($val_ordered_current_val_title != '' ? ': '
. $val_ordered_current_val_title : '') . '" onclick="formupdate(\'' . md5($field)
. '\', \'' . PMA_jsFormat($val_ordered_current_key, false) . '\'); return false;">'
- . $val_ordered_current_val . '</a>' . ($val_ordered_current_equals_data ? '</b>' : '');
+ . $val_ordered_current_val . '</a>' . ($val_ordered_current_equals_data ? '</strong>' : '');
?></td>
<td nowrap="nowrap">
<?php
- echo ($val_ordered_current_equals_data ? '<b>' : '') . '<a href="#" title="'
+ echo ($val_ordered_current_equals_data ? '<strong>' : '') . '<a href="#" title="'
. $strUseThisValue . ($val_ordered_current_val_title != '' ? ': ' . $val_ordered_current_val_title : '')
. '" onclick="formupdate(\'' . md5($field) . '\', \''
. PMA_jsFormat($val_ordered_current_key, false) . '\'); return false;">' . htmlspecialchars($val_ordered_current_key)
- . '</a>' . ($val_ordered_current_equals_data ? '</b>' : '');
+ . '</a>' . ($val_ordered_current_equals_data ? '</strong>' : '');
?></td>
</tr>
<?php