export icon, fix images widths
This commit is contained in:
@@ -8,6 +8,8 @@ $Source$
|
||||
2004-04-16 Michal Cihar <michal@cihar.com>
|
||||
* libraries/common.lib.php, libraries/export/sql.php: ANSI compatible
|
||||
exports (RFE #859815).
|
||||
* images/button_export.png: At least some export icon.
|
||||
* libraries/display_tbl.lib.php: Fix image sizes.
|
||||
|
||||
2004-04-15 Marc Delisle <lem9@users.sourceforge.net>
|
||||
* ldi_table.php: allow longer field terminator (was 2 now 4);
|
||||
@@ -17,8 +19,7 @@ $Source$
|
||||
2004-04-15 Michal Cihar <michal@cihar.com>
|
||||
* tbl_properties_export.php, tbl_row_delete.php,
|
||||
libraries/display_tbl.lib.php: Support for exporting selected rows (RFE
|
||||
#927554) [still missing images/button_export.png, waiting for somebody
|
||||
to make it :-)].
|
||||
#927554).
|
||||
* libraries/auth/cookie.auth.lib.php: Fix possible undefined variable use.
|
||||
* libraries/display_tbl.lib.php: Convert charset for column fields (thanks
|
||||
to Marc for noticing this).
|
||||
|
BIN
images/button_export.png
Normal file
BIN
images/button_export.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 207 B |
@@ -1798,15 +1798,15 @@ function PMA_displayTable(&$dt_result, &$the_disp_mode, $analyzed_sql)
|
||||
/* IE has trouble with <button> */
|
||||
if (PMA_USR_BROWSER_AGENT != 'IE') {
|
||||
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="row_edit" title="' . $GLOBALS['strEdit'] . '">' . "\n"
|
||||
. '<img src="./images/button_edit.png" title="' . $GLOBALS['strEdit'] . '" alt="' . $GLOBALS['strEdit'] . '" width="11" height="13" />' . (($propicon == 'both') ? ' ' . $GLOBALS['strEdit'] : '') . "\n"
|
||||
. '<img src="./images/button_edit.png" title="' . $GLOBALS['strEdit'] . '" alt="' . $GLOBALS['strEdit'] . '" width="12" height="13" />' . (($propicon == 'both') ? ' ' . $GLOBALS['strEdit'] : '') . "\n"
|
||||
. '</button>';
|
||||
|
||||
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="row_delete" title="' . $delete_text . '">' . "\n"
|
||||
. '<img src="./images/button_drop.png" title="' . $delete_text . '" alt="' . $delete_text . '" width="11" height="13" />' . (($propicon == 'both') ? ' ' . $delete_text : '') . "\n"
|
||||
. '<img src="./images/button_drop.png" title="' . $delete_text . '" alt="' . $delete_text . '" width="12" height="13" />' . (($propicon == 'both') ? ' ' . $delete_text : '') . "\n"
|
||||
. '</button>';
|
||||
|
||||
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="row_export" title="' . $GLOBALS['strExport'] . '">' . "\n"
|
||||
. '<img src="./images/button_export.png" title="' . $GLOBALS['strExport'] . '" alt="' . $GLOBALS['strExport'] . '" width="11" height="13" />' . (($propicon == 'both') ? ' ' . $GLOBALS['strExport'] : '') . "\n"
|
||||
. '<img src="./images/button_export.png" title="' . $GLOBALS['strExport'] . '" alt="' . $GLOBALS['strExport'] . '" width="12" height="13" />' . (($propicon == 'both') ? ' ' . $GLOBALS['strExport'] : '') . "\n"
|
||||
. '</button>';
|
||||
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user