<?php
	
	define('INSIDE'  , true);
	define('INSTALL' , false);

	$xnova_root_path = './';
	include($xnova_root_path . 'extension.inc');
	include($xnova_root_path . 'common.' . $phpEx);

	$Qry = <<<SQL
UPDATE 	{{table}} 
SET 	`config_value` = '0' 
WHERE 	`config_name` = 'debug'
SQL;

	doquery($Qry, 'config');
	
	message("Le mode debug a &eacute;t&eacute; d&eacute;sactiv&eacute;.", "Information");

?>