Skip to content
Snippets Groups Projects
Commit 10e7c422 authored by JediKev's avatar JediKev
Browse files

oops: Remove DST From User Update

This addresses an issue where Users updating their profile will throw an SQL
error in the system logs. This is due to a line of code trying to set a
value for the `dst` column which no longer exists as of `1.10.0`.
parent 1d05ff15
No related branches found
No related tags found
No related merge requests found
......@@ -436,7 +436,6 @@ class ClientAccount extends UserAccount {
if ($errors) return false;
$this->set('timezone', $vars['timezone']);
$this->set('dst', isset($vars['dst']) ? 1 : 0);
// Change language
$this->set('lang', $vars['lang'] ?: null);
Internationalization::setCurrentLanguage(null);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment