in admin settings and will not display the image. Here's a simple workaround that will just render the ICO as is and still allow you to set it as store icon:
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<modification>
<id>Allow ICO in Admin Settings</id>
<version>1</version>
<vqmver>2.5.1</vqmver>
<author>billynoah@zuma-design.com | zuma-design.com</author>
<file name="admin/model/tool/image.php">
<operation>
<search position="after" index="1"><![CDATA[$new_image = ]]></search>
<add><![CDATA[ if ($extension == 'ico') copy(DIR_IMAGE . $old_image, DIR_IMAGE . $new_image);]]></add>
</operation>
</file>
</modification>