1
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2025-08-06 06:42:37 +03:00

Automatic code style fixes

This commit is contained in:
Adrien Crivelli
2022-07-15 11:29:55 +02:00
parent 315ac19963
commit a97771adfd
10 changed files with 158 additions and 159 deletions

View File

@@ -23,8 +23,7 @@ $old = setlocale(LC_ALL, 'C');
if (preg_match('/_TR/i', $old)) { if (preg_match('/_TR/i', $old)) {
error_log("WARNING: You may have a Turkish locale set; this breaks the loading of some libraries (Smarty) we depend upon."); error_log("WARNING: You may have a Turkish locale set; this breaks the loading of some libraries (Smarty) we depend upon.");
// don't revert back to $old? // don't revert back to $old?
} } else {
else {
setlocale(LC_ALL, $old); // revert back. setlocale(LC_ALL, $old); // revert back.
} }