source:
www/mysql/libraries/transformations/text_plain__sql.inc.php@
1
Last change on this file since 1 was 1, checked in by , 17 years ago | |
---|---|
File size: 382 bytes |
Line | |
---|---|
1 | <?php |
2 | /* $Id: text_plain__sql.inc.php 7560 2005-10-16 16:16:36Z nijel $ */ |
3 | // vim: expandtab sw=4 ts=4 sts=4: |
4 | |
5 | function PMA_transformation_text_plain__sql($buffer, $options = array(), $meta = '') { |
6 | $result = PMA_SQP_formatHtml(PMA_SQP_parse($buffer)); |
7 | // Need to clear error state not to break subsequent queries display. |
8 | PMA_SQP_resetError(); |
9 | return $result; |
10 | } |
11 | |
12 | ?> |
Note:
See TracBrowser
for help on using the repository browser.