As per title Questions, comments and upgrades!
I'm going to highlight this one point inparticular.
You need to update/revert this template, otherwise you may lose the ability for people to register on your site.
Common issues.
TMS (http://xenforo.com/community/resources/template-modification-system-tms.293/) needs an update if you have debug enabled
in library/TMS/Model/Template.php:
Find:
Replace with:
http://xenforo.com/community/threads/1-1-4-discussion-thread.47031/#post-505736
Users Awaiting Approval bug fix
Please note that a minor bug has been fixed and the the download package has been updated at around 11:30 GMT.
http://xenforo.com/community/threads/users-awaiting-approval-not-counting-down.47036/
If you have already upgraded using the previous package, you can download the latest .zip and just copy the new file which is library/XenForo/DataWriter/User.php
If you also want the file health check to pass, you will need to upload library/xf/install/data/filesums.php too.
I'm going to highlight this one point inparticular.
register_form
Add support for the registration timer and add the reg_key input.
You need to update/revert this template, otherwise you may lose the ability for people to register on your site.
Common issues.
TMS (http://xenforo.com/community/resources/template-modification-system-tms.293/) needs an update if you have debug enabled
in library/TMS/Model/Template.php:
Find:
Code:
public function fetchAllKeyed($sql, $key, $bind = array())
{
if (strpos($sql, 'template_map') !== false) {
$sql = str_replace('SELECT ', 'SELECT template_map.template_final, template_map.template_modifications, ', $sql);
}
return parent::fetchAllKeyed($sql, $key, $bind);
}
Replace with:
Code:
public function fetchAllKeyed($sql, $key, $bind = array(), $nullPrefix = '')
{
if (strpos($sql, 'template_map') !== false) {
$sql = str_replace('SELECT ', 'SELECT template_map.template_final, template_map.template_modifications, ', $sql);
}
return parent::fetchAllKeyed($sql, $key, $bind, $nullPrefix);
}
http://xenforo.com/community/threads/1-1-4-discussion-thread.47031/#post-505736
Users Awaiting Approval bug fix
Please note that a minor bug has been fixed and the the download package has been updated at around 11:30 GMT.
http://xenforo.com/community/threads/users-awaiting-approval-not-counting-down.47036/
If you have already upgraded using the previous package, you can download the latest .zip and just copy the new file which is library/XenForo/DataWriter/User.php
If you also want the file health check to pass, you will need to upload library/xf/install/data/filesums.php too.