use already made icon for hint

This commit is contained in:
Marc Delisle
2004-10-20 12:49:25 +00:00
parent b9b379d2ba
commit a017257c22
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-10-20 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: there was already a tip icon in our collection,
thanks to Michael Keck
2004-10-20 Michal Čihař <michal@cihar.com>
* lang/czech: Update.
* tbl_relation.php: Backquote table name (bug #1050441).

View File

@@ -556,7 +556,7 @@ if ($is_minimum_common == FALSE) {
*/
function PMA_showHint($hint_message)
{
return '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_hint.png" width="32" height="32" border="0" alt="' . $hint_message . '" title="' . $hint_message . '" align="middle" />';
return '<img src="' . $GLOBALS['pmaThemeImage'] . 'b_tipp.png" width="16" height="16" border="0" alt="' . $hint_message . '" title="' . $hint_message . '" align="middle" />';
}
/**