This commit is contained in:
Garvin Hicking
2003-08-15 14:45:17 +00:00
parent 337eda7f84
commit 7dba791449
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-08-15 Garvin Hicking <me@supergarv.de>
* tbl_properties_structure.php3: RFE #784900 (show alternate text for
multi-submit button)
2003-08-15 Michal Cihar <nijel@users.sourceforge.net>
* Documentation: Synced export FAQ with export page.
* Documentation: Fixed information about transformations.

View File

@@ -380,12 +380,12 @@ $checkall_url = 'tbl_properties_structure.php3?' . PMA_generate_common_url($db,$
if ($cfg['PropertiesIconic']) {
/* Opera has trouble with <input type="image"> */
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="' . $strChange . '" title="' . $strChange . '">' . "\n"
. ' <img src="./images/button_edit.png" title="' . $strChange . '" alt="' . $strChange . '" width="12" height="13" />' . "\n"
. ' <img src="./images/button_edit.png" title="' . $strChange . '" alt="' . $strChange . '" width="12" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $strChange : '') . "\n"
. ' </button>' . "\n";
// Drop button if there is at least two fields
if ($fields_cnt > 1) {
echo ' <button class="mult_submit" type="submit" name="submit_mult" value="' . $strDrop . '" title="' . $strDrop . '">' . "\n"
. ' <img src="./images/button_drop.png" title="' . $strDrop . '" alt="' . $strDrop . '" width="11" height="13" />' . "\n"
. ' <img src="./images/button_drop.png" title="' . $strDrop . '" alt="' . $strDrop . '" width="11" height="13" />' . (($propicon == 'both') ? '&nbsp;' . $strChange : '') . "\n"
. ' </button>' . "\n";
}
} else {