diff --git a/app/Config/App.php b/app/Config/App.php
index 88f04a906..747bcb043 100755
--- a/app/Config/App.php
+++ b/app/Config/App.php
@@ -473,5 +473,29 @@ public function __construct()
         if (!empty($_SERVER['CI_ENVIRONMENT']) and $_SERVER['CI_ENVIRONMENT'] === 'development') {
             $this->CSPEnabled = false;
         }
+
+        // $timezone = '';
+        // $default = 'UTC';
+        // if ((string) php_uname('s') === 'Linux') {
+        //     // On many systems (Mac, for instance) "/etc/localtime" is a symlink
+        //     // to the file with the timezone info
+        //     if (@is_link('/etc/localtime')) {
+        //         // If it is, that file's name is actually the "Olsen" format timezone
+        //         $temp_file = @readlink('/etc/localtime');
+        //         $temp_pos = strpos($temp_file, 'zoneinfo');
+        //         if ($temp_pos) {
+        //             // When it is, it's in the "/usr/share/zoneinfo/" folder
+        //             $timezone = substr($temp_file, $temp_pos + strlen('zoneinfo/'));
+        //         }
+        //     } else {
+        //         // On other systems, like Ubuntu, there's file with the Olsen time right inside it.
+        //         $timezone = @file_get_contents('/etc/timezone');
+        //     }
+        //     if ((string)$timezone === '') {
+        //         $this->appTimezone = $default;
+        //     } else {
+        //         $this->appTimezone = $timezone;
+        //     }
+        // }
     }
 }