Upgrades - Appendix v1.1

Below are the template changes in v1.1. You will need to deploy the changes manually if you made template changes and are using a different theme. Note that the details will reference data in the original theme, so you'll need to find the corresponding information in your own templates. New language files should be copied to all language folders and template files to all themes.

New files should be added to your setup from the latest download zip file and where it states to update something, you should refer to the corresponding file in the zip file.
New Files / Folders
content/language > 1.1.php
content/language/english/admin/apages.php

content/*theme*/html/captcha.htm
content/*theme*/html/security.htm
content/*theme*/privacy-policy.tpl.php
content/*theme*/fonts/Comfortaa-Light.ttf
content/*theme*/fonts/oswald*.ttf (ALL oswald fonts)
Stylesheets (CSS)
Note: If the msw.css file doesn't exist, add code to the 'theme.css' file or your main stylesheet.
1 Open the following file:

content/*theme*/css/msw.css

Add the following:

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border:0 !important;
}
Javascript (JS)
1 Replace the following files:

content/*theme*/js/functions.js
content/*theme*/js/ops.js
If you added any custom functions, these should be copied back to these files.
Template Files
1 Open the 'content/*theme*/footer.tpl.php' file and add the following before the closing body tag:

<?php
echo $this->SEC_TOKEN;
?>
2 Open the following files:

content/*theme*/create.tpl.php
content/*theme*/login.tpl.php

Add in the captcha option (refer to new files)

<?php
echo $this->CAPTCHA;
?>
Language (Update for all language folders)
No language changes
Something Missing?
Was a template update not shown here that caused something to break? Please let us know, thank you.
Back to Appendix
Back to Upgrades