Use <dfn> instead of <a> for not using lots of hyperlinks. Made implementation compatible when customized dateformats are used.

This commit is contained in:
Garvin Hicking
2003-12-05 11:02:14 +00:00
parent 3389aabe13
commit 7a4c99c8df
2 changed files with 10 additions and 4 deletions

View File

@@ -5,6 +5,12 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-12-05 Garvin Hicking <weihnachtsgarv@supergarv.de>
* libraries/transformations/text_plain__dateformat.inc.php:
Use <dfn>-Tag to display original data to not waste display
clarity by using hyperlinks. Original implementation also
failed when using customized options.
2003-12-04 Marc Delisle <lem9@users.sourceforge.net>
* lang/estonian: Updated, thanks to Alvar Soome (finsoft).
* libraries/transformations/text_plain__dateformat.inc.php:

View File

@@ -12,9 +12,8 @@ function PMA_transformation_text_plain__dateformat($buffer, $options = array(),
}
if (!isset($options[1]) || $options[1] == '') {
//$options[1] = $GLOBALS['datefmt'];
$buffer_message = "'" . $buffer . "'";
$options[1] = '<a href="javascript:alert(' . $buffer_message . ')" title=' . $buffer_message . '>' . $GLOBALS['datefmt'] . '</a>';
$options[1] = $GLOBALS['datefmt'];
}
$timestamp = -1;
@@ -52,7 +51,8 @@ function PMA_transformation_text_plain__dateformat($buffer, $options = array(),
// Reformat a valid timestamp
if ($timestamp >= 0) {
$timestamp -= $options[0] * 60 * 60;
$buffer = PMA_localisedDate($timestamp, $options[1]);
$source = $buffer;
$buffer = '<dfn onclick="alert(\'' . $source . '\');" title="' . $source . '">' . PMA_localisedDate($timestamp, $options[1]) . '</dfn>';
}
return $buffer;