Rev Author Line No. Line
250 kaklik 1 <?php
2 /* $Id: text_plain__sql.inc.php,v 1.1 2005/10/16 16:16:36 nijel Exp $ */
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 ?>