Skip to content

Instantly share code, notes, and snippets.

@leandrocp
Created July 31, 2009 18:47
Show Gist options
  • Save leandrocp/159369 to your computer and use it in GitHub Desktop.
Save leandrocp/159369 to your computer and use it in GitHub Desktop.
Howto http://ie6update.com/ on CakePHP with local images
<!-- IE6 Update -->
<!--
Instructions:
1. Download http://ie6update.com/hosted/ie6update.1.0.0.zip
2. Copy ie6update.js to app/webroot/js
3. Copy images to app/webroot/img
-->
<!--[if IE 6]>
<script type="text/javascript">
var __noconflict = true;
var IE6UPDATE_OPTIONS = {
icons_path: "<?php echo Helper::webroot('img') . DS ?>",
message: "Seu Internet Explorer está desatualizado e pode apresentar problemas. Clique aqui para atualizar."
}
</script>
<?php echo $javascript->link('ie6update'); ?>
<![endif]-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment