In PHP5.3, the function eregi() will raise an error: Deprecated: Function eregi() is deprecated in xxx.php on line nnn.
After search into the quickskin files, eregi() is used once, and that's easy to use preg_match instead of it. It's nice to look forward to make compatible better.
Best Regards.
QuickSkin Bug Report:
In qx_options.php, is_numeric($key) should be is_numeric($value)
For Example:
$opts = array(0=>"ABC", 3=>"DEF", 2=>"GHI");
IN CASE 1: is_numeric($key), QuickSkin turns into
==================================
<option>ABC</option><option...