mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 10:44:12 +01:00 
			
		
		
		
	Backport #26402 by cassiozareck Closes #25898 Signed-off-by: cassiozareck <cassiomilczareck@gmail.com> Co-authored-by: cassio zareck <121526696+cassiozareck@users.noreply.github.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			625 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			625 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package setting
 | 
						|
 | 
						|
import (
 | 
						|
	"time"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
)
 | 
						|
 | 
						|
// DefaultUILocation is the location on the UI, so that we can display the time on UI.
 | 
						|
var DefaultUILocation = time.Local
 | 
						|
 | 
						|
func loadTimeFrom(rootCfg ConfigProvider) {
 | 
						|
	zone := rootCfg.Section("time").Key("DEFAULT_UI_LOCATION").String()
 | 
						|
	if zone != "" {
 | 
						|
		var err error
 | 
						|
		DefaultUILocation, err = time.LoadLocation(zone)
 | 
						|
		if err != nil {
 | 
						|
			log.Fatal("Load time zone failed: %v", err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
	if DefaultUILocation == nil {
 | 
						|
		DefaultUILocation = time.Local
 | 
						|
	}
 | 
						|
}
 |