[release-branch.go1.11] godoc/short: point to new tracking issue for shortlink creation

There's a new dedicated issue tracking this task, point to it instead
of the previous large issue which has been closed by now.

Updates golang/go#29988
Updates golang/go#27205

Change-Id: Ib1443d14a6369322b36cdf8305344a35c421a2e5
Reviewed-on: https://go-review.googlesource.com/c/160377
Reviewed-by: Agniva De Sarker <agniva.quicksilver@gmail.com>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
(cherry picked from commit 1c3581914d338ed45d4c3b4b5029c7c7d112faca)
Reviewed-on: https://go-review.googlesource.com/c/160477
Reviewed-by: Andrew Bonventre <andybons@golang.org>
Run-TryBot: Andrew Bonventre <andybons@golang.org>
diff --git a/godoc/short/short.go b/godoc/short/short.go
index 5f91cb2..4b5f3e2 100644
--- a/godoc/short/short.go
+++ b/godoc/short/short.go
@@ -52,11 +52,11 @@
 	// TODO(cbro): move storage of the links to a text file in Gerrit.
 	// Disable the admin handler until that happens, since GAE Flex doesn't support
 	// the "google.golang.org/appengine/user" package.
-	// See golang.org/issue/27205#issuecomment-418673218
+	// See golang.org/issue/29988 and golang.org/issue/27205#issuecomment-418673218.
 	// mux.HandleFunc(prefix, adminHandler)
 	mux.HandleFunc(prefix, func(w http.ResponseWriter, r *http.Request) {
 		w.WriteHeader(http.StatusForbidden)
-		io.WriteString(w, "Link creation temporarily unavailable. See golang.org/issue/27205.")
+		io.WriteString(w, "Link creation temporarily unavailable. See golang.org/issue/29988.")
 	})
 }