+ {{if .IsOrganization}}
+ {{svg "octicon-organization"}}
+ {{else if .IsBot}}
+ {{svg "octicon-dependabot"}}
+ {{else}}
+ {{svg "octicon-person"}}
+ {{end}}
{{template "shared/user/name" .}}
{{if .Visibility.IsPrivate}}
{{ctx.Locale.Tr "repo.desc.private"}}
diff --git a/tests/integration/links_test.go b/tests/integration/links_test.go
index d103e2b0a90bc..746490d357538 100644
--- a/tests/integration/links_test.go
+++ b/tests/integration/links_test.go
@@ -25,8 +25,6 @@ func TestLinksNoLogin(t *testing.T) {
"/explore/repos?q=test",
"/explore/users",
"/explore/users?q=test",
- "/explore/organizations",
- "/explore/organizations?q=test",
"/",
"/user/sign_up",
"/user/login",
@@ -86,8 +84,6 @@ func testLinksAsUser(userName string, t *testing.T) {
"/explore/repos?q=test",
"/explore/users",
"/explore/users?q=test",
- "/explore/organizations",
- "/explore/organizations?q=test",
"/",
"/user/forgot_password",
"/api/swagger",
diff --git a/tests/integration/setting_test.go b/tests/integration/setting_test.go
index 9dad9ca716a06..0e2141ec2fcdf 100644
--- a/tests/integration/setting_test.go
+++ b/tests/integration/setting_test.go
@@ -107,7 +107,7 @@ func TestSettingLandingPage(t *testing.T) {
setting.LandingPageURL = setting.LandingPageOrganizations
req = NewRequest(t, "GET", "/")
resp = MakeRequest(t, req, http.StatusSeeOther)
- assert.Equal(t, "/explore/organizations", resp.Header().Get("Location"))
+ assert.Equal(t, "/explore/users", resp.Header().Get("Location"))
setting.LandingPageURL = setting.LandingPageLogin
req = NewRequest(t, "GET", "/")