
 dexter - 2005-10-26 13:55:27
 
changing this:
   if(!isset($_GET['lang']))$lang = "IT";
		else $lang = $_GET['lang'];
to this:
   if(!isset($_GET['lang']))$lang = "IT";
		else $lang = strtoupper($_GET['lang']);
into file using this class prevent error for cap-lock typo into website's links
;)