unused code

This commit is contained in:
Marc Delisle
2010-08-20 08:43:09 -04:00
parent 272c57cdba
commit 22eaa592ca
2 changed files with 0 additions and 16 deletions

View File

@@ -327,7 +327,6 @@ function PMA_formatSql($parsed_sql, $unparsed_sql = '')
$formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'color');
break;
case 'text':
//$formatted_sql = PMA_SQP_formatText($parsed_sql);
$formatted_sql = PMA_SQP_formatHtml($parsed_sql, 'text');
break;
default:

View File

@@ -2662,21 +2662,6 @@ if (! defined('PMA_MINIMUM_COMMON')) {
return $formatted_sql;
} // end of the "PMA_SQP_formatNone()" function
/**
* Gets SQL queries in text format
*
* @todo WRITE THIS!
* @param array The SQL queries list
*
* @return string The SQL queries in text format
*
* @access public
*/
function PMA_SQP_formatText($arr)
{
return PMA_SQP_formatNone($arr);
} // end of the "PMA_SQP_formatText()" function
} // end if: minimal common.lib needed?
?>