mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	fix #1204
This commit is contained in:
		@@ -194,11 +194,6 @@ func Profile(ctx *middleware.Context) {
 | 
				
			|||||||
		ctx.Redirect(setting.AppSubUrl + "/org/" + u.Name)
 | 
							ctx.Redirect(setting.AppSubUrl + "/org/" + u.Name)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					 | 
				
			||||||
	// For security reason, hide e-mail address for anonymous visitors.
 | 
					 | 
				
			||||||
	if !ctx.IsSigned {
 | 
					 | 
				
			||||||
		u.Email = ""
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	ctx.Data["Owner"] = u
 | 
						ctx.Data["Owner"] = u
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	tab := ctx.Query("tab")
 | 
						tab := ctx.Query("tab")
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -12,7 +12,7 @@
 | 
				
			|||||||
      <ul class="text-grey">
 | 
					      <ul class="text-grey">
 | 
				
			||||||
        {{if .Org.Location}}<li><span class="octicon octicon-location"></span> <span>{{.Org.Location}}</span></li>{{end}}
 | 
					        {{if .Org.Location}}<li><span class="octicon octicon-location"></span> <span>{{.Org.Location}}</span></li>{{end}}
 | 
				
			||||||
        {{if .Org.Website}}<li><span class="octicon octicon-link"></span> <a target="_blank" href="{{.Org.Website}}">{{.Org.Website}}</a></li>{{end}}
 | 
					        {{if .Org.Website}}<li><span class="octicon octicon-link"></span> <a target="_blank" href="{{.Org.Website}}">{{.Org.Website}}</a></li>{{end}}
 | 
				
			||||||
        {{if .Org.Email}}<li><span class="octicon octicon-mail"></span> <a href="mailto:{{.Org.Email}}">{{.Org.Email}}</a></li>{{end}}
 | 
					        {{if and .Org.Email .IsSigned}}<li><span class="octicon octicon-mail"></span> <a href="mailto:{{.Org.Email}}">{{.Org.Email}}</a></li>{{end}}
 | 
				
			||||||
      </ul>
 | 
					      </ul>
 | 
				
			||||||
		</div>
 | 
							</div>
 | 
				
			||||||
	</div>
 | 
						</div>
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -22,7 +22,7 @@
 | 
				
			|||||||
                    {{if .Owner.Location}}
 | 
					                    {{if .Owner.Location}}
 | 
				
			||||||
                    <li class="list-group-item"><i class="octicon octicon-location"></i>  {{.Owner.Location}}</li>
 | 
					                    <li class="list-group-item"><i class="octicon octicon-location"></i>  {{.Owner.Location}}</li>
 | 
				
			||||||
                    {{end}}
 | 
					                    {{end}}
 | 
				
			||||||
                    {{if .Owner.Email}}
 | 
					                    {{if and .Owner.Email .IsSigned}}
 | 
				
			||||||
                    <li class="list-group-item"><i class="octicon octicon-mail"></i>  <a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a></li>
 | 
					                    <li class="list-group-item"><i class="octicon octicon-mail"></i>  <a href="mailto:{{.Owner.Email}}" rel="nofollow">{{.Owner.Email}}</a></li>
 | 
				
			||||||
                    {{end}}
 | 
					                    {{end}}
 | 
				
			||||||
                    {{if .Owner.Website}}
 | 
					                    {{if .Owner.Website}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user