diff options
author | cduvall@chromium.org <cduvall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-14 00:40:56 +0000 |
---|---|---|
committer | cduvall@chromium.org <cduvall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-14 00:40:56 +0000 |
commit | f60bf8bbf715ecbe07fe47e42110ed101a028172 (patch) | |
tree | 0c51dd16130376101ca9f42fa990bd2346e9f8c7 | |
parent | 23d2b7ec88a7311a3852bf0b7dfede68b31a94c5 (diff) | |
download | chromium_src-f60bf8bbf715ecbe07fe47e42110ed101a028172.zip chromium_src-f60bf8bbf715ecbe07fe47e42110ed101a028172.tar.gz chromium_src-f60bf8bbf715ecbe07fe47e42110ed101a028172.tar.bz2 |
Extensions Docs Server: BranchUtility not fetching branch numbers correctly
BranchUtility was crashing when it tried to fetch the branch numbers for the
dev, beta, and stable channels. There was also a problem using the branch number
where the name should have been used.
ServerInstances are no longer leaked.
BUG=141909
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=151386
Review URL: https://chromiumcodereview.appspot.com/10831269
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151401 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/common/extensions/docs/server2/templates/public/apps/index.html | 2 | ||||
-rw-r--r-- | chrome/common/extensions/docs/server2/templates/public/extensions/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/docs/server2/templates/public/apps/index.html b/chrome/common/extensions/docs/server2/templates/public/apps/index.html index d0bf6b7..ce9193e 100644 --- a/chrome/common/extensions/docs/server2/templates/public/apps/index.html +++ b/chrome/common/extensions/docs/server2/templates/public/apps/index.html @@ -96,5 +96,5 @@ </div> </div> </body> - {{+partials.footer}} + {{+partials.apps_footer}} </html> diff --git a/chrome/common/extensions/docs/server2/templates/public/extensions/index.html b/chrome/common/extensions/docs/server2/templates/public/extensions/index.html index 564d7f2..f7a0f84 100644 --- a/chrome/common/extensions/docs/server2/templates/public/extensions/index.html +++ b/chrome/common/extensions/docs/server2/templates/public/extensions/index.html @@ -96,5 +96,5 @@ </div> </div> </body> - {{+partials.footer}} + {{+partials.extensions_footer}} </html> |