diff --git a/ChangeLog b/ChangeLog index 7bb8156b8..57b8516d8 100755 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,15 @@ $Source$ * lang/polish*: Updates, thanks to Jakub Wilk (ubanus) * fulltext.png, partialtext.png, pma_logo.png: - Ran PNGCRUSH on files to reduce size optimially. + * plus.gif, browse.gif, desc_order.gif, asc_order.gif, minus.gif, + vertical_line.gif, item_rtl.gif, item_ltr.gif: + - Old image files removed and replaced with PNG files (feature + #458895) + * plus.png, browse.png, desc_order.png, asc_order.png, minus.png, + vertical_line.png, item_rtl.png, item_ltr.png: + - New PNG image files (feature #458895) + * header.inc.php3, left.php3, main.php3, libraries/display_tbl.lib.php3: + - Code changes for PNG images (feature #458895) 2003-01-21 Robin Johnson * libraries/sqlparser.lib.php3: checkType function diff --git a/header.inc.php3 b/header.inc.php3 index 836cb2a85..e4eb4222e 100755 --- a/header.inc.php3 +++ b/header.inc.php3 @@ -66,7 +66,7 @@ body { color: #000000; 1) { echo "\n"; ?> - + + + - - + - 1) { ?> - <?php echo $strBrowse . ': ' . htmlspecialchars($table); ?>  + <?php echo $strBrowse . ': ' . htmlspecialchars($table); ?> 
1) { ? str_replace('"', '"', $tooltip[$table]) : ''; $table_list .= ' ' . "\n"; - $table_list .= ' ' . $strBrowse . ': ' . $table . ' ' . "\n"; + $table_list .= ' ' . $strBrowse . ': ' . $table . ' ' . "\n"; if (PMA_USR_BROWSER_AGENT == 'IE') { $table_list .= ' ' . htmlspecialchars($table) . '
' . "\n"; } else { @@ -417,7 +417,7 @@ else if ($num_dbs == 1) { echo "\n"; ?> - <?php echo $strBrowse . ': ' . htmlspecialchars($table); ?>  + <?php echo $strBrowse . ': ' . htmlspecialchars($table); ?> 
'; + $order_img = ' '. $GLOBALS['strAscending'] . ''; } else if (eregi('[[:space:]]DESC$', $sql_order)) { $sort_order .= ' ASC'; - $order_img = ' '. $GLOBALS['strDescending'] . ''; + $order_img = ' '. $GLOBALS['strDescending'] . ''; } if (eregi('(.*)([[:space:]](LIMIT (.*)|PROCEDURE (.*)|FOR UPDATE|LOCK IN SHARE MODE))', $unsorted_sql_query, $regs3)) { $sorted_sql_query = $regs3[1] . $sort_order . $regs3[2]; diff --git a/main.php3 b/main.php3 index 014d10a0b..6924e5e51 100755 --- a/main.php3 +++ b/main.php3 @@ -24,7 +24,7 @@ if (!isset($pma_uri_parts)) { } setcookie('lang', $lang, time() + 60*60*24*30, $cookie_path, '', $is_https); // Defines the "item" image depending on text direction -$item_img = 'images/item_' . $text_dir . '.gif'; +$item_img = 'images/item_' . $text_dir . '.png'; // Handles some variables that may have been sent by the calling script if (isset($db)) { unset($db);