Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Meta charset declaration in the <head> of the page?
Tudor
✭
I'm currently evaluating Vanilla for building a discussion board in a foreign language. I noticed there is no meta charset declaration in the <head> of Vanilla generated pages. I know I could probably add it by editing some PHP file, but I'm wondering why is it not there by default.
0
Comments
If you want to add other strings to the <head> section of your Vanilla pages, it's very simple.
Create an extension with the following content:
<?php /* Extension Name: HTML Header Injector Extension Url: http://lussumo.com/community/ Description: Add strings the the HTML header of every page Version: 1 Author: Matthew Pietz Author Url: http://lussumo.com/community/account.php?u=6720 */ $Head->AddString('<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />');