Fix for the Open in New Window in Patient/Client->Patients search gui, take 2.
[openemr.git] / phpmyadmin / libraries / transformations / image_jpeg__link.inc.php
blobf81a492f5a757692f3e8633d346bb9204f2842c0
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @version $Id$
6 */
8 /**
11 function PMA_transformation_image_jpeg__link($buffer, $options = array(), $meta = '') {
12 require_once './libraries/transformations/global.inc.php';
14 $transform_options = array ('string' => '<a href="transformation_wrapper.php' . $options['wrapper_link'] . '" alt="[__BUFFER__]">[BLOB]</a>');
15 $buffer = PMA_transformation_global_html_replace($buffer, $transform_options);
17 return $buffer;