Welcome to mirror list, hosted at ThFree Co, Russian Federation.

text_plain__formatted.inc.php « transformations « libraries - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65e145841b0c32e538db01641e73a949b1b754a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * @package phpMyAdmin-Transformation
 * @version $Id$
 */

/**
 *
 */
function PMA_transformation_text_plain__formatted($buffer, $options = array(), $meta = '') {
    return $buffer;
}

?>