some more nobr fixes
This commit is contained in:
@@ -19,6 +19,8 @@ $Source$
|
|||||||
now correctly works with multibyte strings (bug #936161).
|
now correctly works with multibyte strings (bug #936161).
|
||||||
* libraries/dbi/mysql.dbi.lib.php: Do not break TEXT fields (bug #860160).
|
* libraries/dbi/mysql.dbi.lib.php: Do not break TEXT fields (bug #860160).
|
||||||
* libraries/display_tbl.lib.php: Show if BLOB is null (RFE #941528).
|
* libraries/display_tbl.lib.php: Show if BLOB is null (RFE #941528).
|
||||||
|
* tbl_properties_structure.php: Forgotten </nobr> -> </div>.
|
||||||
|
* libraries/display_tbl.lib.php: Fixed class="nobr" -> class="nowrap".
|
||||||
|
|
||||||
2004-04-28 Michal Cihar <michal@cihar.com>
|
2004-04-28 Michal Cihar <michal@cihar.com>
|
||||||
* css/phpmyadmin.css.php: Force <button> to be displayed inline.
|
* css/phpmyadmin.css.php: Force <button> to be displayed inline.
|
||||||
|
@@ -824,9 +824,9 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
|
|||||||
$order_last_word = $order_link_words[$order_last_word_index];
|
$order_last_word = $order_link_words[$order_last_word_index];
|
||||||
unset($order_link_words[$order_last_word_index]);
|
unset($order_link_words[$order_last_word_index]);
|
||||||
$order_link = $order_link_pre . implode(' ', $order_link_words)
|
$order_link = $order_link_pre . implode(' ', $order_link_words)
|
||||||
. ' <div class="nobr">' . $order_last_word . $order_img . '</div>' . $order_link_post . "\n";
|
. ' <div class="nowrap">' . $order_last_word . $order_img . '</div>' . $order_link_post . "\n";
|
||||||
} else {
|
} else {
|
||||||
$order_link = '<div class="nobr">' . $order_link_pre . $order_link_content . $order_link_post . $order_img . '</div>' . "\n";
|
$order_link = '<div class="nowrap">' . $order_link_pre . $order_link_content . $order_link_post . $order_img . '</div>' . "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($disp_direction == 'horizontal' || $disp_direction == 'horizontalflipped') {
|
if ($disp_direction == 'horizontal' || $disp_direction == 'horizontalflipped') {
|
||||||
|
@@ -235,16 +235,16 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
|
|||||||
|
|
||||||
if ($propicon == 'both') {
|
if ($propicon == 'both') {
|
||||||
$titles['Change'] .= ' ' . $strChange . '</div>';
|
$titles['Change'] .= ' ' . $strChange . '</div>';
|
||||||
$titles['Drop'] .= ' ' . $strDrop . '</nobr>';
|
$titles['Drop'] .= ' ' . $strDrop . '</div>';
|
||||||
$titles['NoDrop'] .= ' ' . $strDrop . '</nobr>';
|
$titles['NoDrop'] .= ' ' . $strDrop . '</div>';
|
||||||
$titles['Primary'] .= ' ' . $strPrimary . '</nobr>';
|
$titles['Primary'] .= ' ' . $strPrimary . '</div>';
|
||||||
$titles['Index'] .= ' ' . $strIndex . '</nobr>';
|
$titles['Index'] .= ' ' . $strIndex . '</div>';
|
||||||
$titles['Unique'] .= ' ' . $strUnique . '</nobr>';
|
$titles['Unique'] .= ' ' . $strUnique . '</div>';
|
||||||
$titles['IdxFulltext' ] .= ' ' . $strIdxFulltext . '</nobr>';
|
$titles['IdxFulltext' ] .= ' ' . $strIdxFulltext . '</div>';
|
||||||
$titles['NoPrimary'] .= ' ' . $strPrimary . '</nobr>';
|
$titles['NoPrimary'] .= ' ' . $strPrimary . '</div>';
|
||||||
$titles['NoIndex'] .= ' ' . $strIndex . '</nobr>';
|
$titles['NoIndex'] .= ' ' . $strIndex . '</div>';
|
||||||
$titles['NoUnique'] .= ' ' . $strUnique . '</nobr>';
|
$titles['NoUnique'] .= ' ' . $strUnique . '</div>';
|
||||||
$titles['NoIdxFulltext'] .= ' ' . $strIdxFulltext . '</nobr>';
|
$titles['NoIdxFulltext'] .= ' ' . $strIdxFulltext . '</div>';
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$titles['Change'] = $strChange;
|
$titles['Change'] = $strChange;
|
||||||
|
Reference in New Issue
Block a user