mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	Closes #25898 The problem was that the default settings weren't being loaded --------- Signed-off-by: cassiozareck <cassiomilczareck@gmail.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> (cherry picked from commit 1e2c8eb494ff5b8378653db5fed876d824ebca6f) Conflicts: modules/setting/indexer.go trivial context conflict
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			625 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 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
 | 
						|
	}
 | 
						|
}
 |