diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-10-06 19:12:52 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-10-06 19:12:52 -0400 |
commit | 1e1f9e716660533dc3c570b51006e4e36b2c3a7f (patch) | |
tree | 10ee985984524d4218f0cd03c6f98bccde92429f /routers/org | |
parent | 64c68220d203cb07be001184cde4b35d4b503344 (diff) | |
download | gitea-1e1f9e716660533dc3c570b51006e4e36b2c3a7f.tar.gz gitea-1e1f9e716660533dc3c570b51006e4e36b2c3a7f.zip |
Update with macaron
Diffstat (limited to 'routers/org')
-rw-r--r-- | routers/org/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/org/setting.go b/routers/org/setting.go index 0522f99803..41ec4a2141 100644 --- a/routers/org/setting.go +++ b/routers/org/setting.go @@ -92,7 +92,7 @@ func SettingsDelete(ctx *middleware.Context) { ctx.Handle(500, "DeleteOrganization", err) } } else { - log.Trace("Organization deleted: %s", ctx.User.Name) + log.Trace("Organization deleted: %s", org.Name) ctx.Redirect(setting.AppSubUrl + "/") } return |