day811
Results 1 - 1 of 1
This component works fine but i need to change a line to make CSV export compatible with queries using quotes.
In administrator\components\com_easysql\admin.easysql.php
I change
$sql = mosGetParam( $_POST, 'easysql_query', null );
to
$sql = stripslashes(mosGetParam( $_POST, 'easysql_query', null ));
In administrator\components\com_easysql\admin.easysql.php
I change
$sql = mosGetParam( $_POST, 'easysql_query', null );
to
$sql = stripslashes(mosGetParam( $_POST, 'easysql_query', null ));
