[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_0BETA2-1526-gacc405e

The branch, master has been updated via acc405e3faa5763b4c30877762182e077a9befea (commit) from 67e4994490749dbd065805b2f345176a3becf9e7 (commit) - Log ----------------------------------------------------------------- commit acc405e3faa5763b4c30877762182e077a9befea Author: Michal Čihař <mcihar@novell.com> Date: Mon Jan 31 15:35:08 2011 +0100 Wrap URL in transformation as well ----------------------------------------------------------------------- Summary of changes: libraries/transformations/text_plain__link.inc.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/libraries/transformations/text_plain__link.inc.php b/libraries/transformations/text_plain__link.inc.php index bec7661..6a1ca6c 100644 --- a/libraries/transformations/text_plain__link.inc.php +++ b/libraries/transformations/text_plain__link.inc.php @@ -18,7 +18,7 @@ function PMA_transformation_text_plain__link($buffer, $options = array(), $meta // $transform_options = array ('string' => '<a href="' . (isset($options[0]) ? $options[0] : '') . '%1$s" title="' . (isset($options[1]) ? $options[1] : '%1$s') . '">' . (isset($options[1]) ? $options[1] : '%1$s') . '</a>'); - $transform_options = array ('string' => '<a href="' . (isset($options[0]) ? $options[0] : '') . $buffer . '" title="' . (isset($options[1]) ? $options[1] : '') . '">' . (isset($options[1]) ? $options[1] : $buffer) . '</a>'); + $transform_options = array ('string' => '<a href="' . PMA_linkURL((isset($options[0]) ? $options[0] : '') . $buffer) . '" title="' . (isset($options[1]) ? $options[1] : '') . '">' . (isset($options[1]) ? $options[1] : $buffer) . '</a>'); $buffer = PMA_transformation_global_html_replace($buffer, $transform_options); hooks/post-receive -- phpMyAdmin
participants (1)
-
Michal Čihař