From e33ddac9bfb934fed5d188e10a9930d33d79d3f7 Mon Sep 17 00:00:00 2001
From: Unknwon <u@gogs.io>
Date: Mon, 25 Jan 2016 14:04:46 -0500
Subject: [PATCH] Minor fix for #2396

---
 README.md                  | 2 +-
 gogs.go                    | 2 +-
 modules/ssh/ssh.go         | 2 +-
 public/css/gogs.css        | 3 +++
 public/less/_markdown.less | 4 ++++
 templates/.VERSION         | 2 +-
 6 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 69e375d33fa8..3e7b59624316 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@ Gogs - Go Git Service [![Build Status](https://travis-ci.org/gogits/gogs.svg?bra
 
 ![](https://github.com/gogits/gogs/blob/master/public/img/gogs-large-resize.png?raw=true)
 
-##### Current version: 0.8.22
+##### Current version: 0.8.23
 
 | Web | UI  | Preview  |
 |:-------------:|:-------:|:-------:|
diff --git a/gogs.go b/gogs.go
index 81b28c6bb263..c1f128f8109b 100644
--- a/gogs.go
+++ b/gogs.go
@@ -17,7 +17,7 @@ import (
 	"github.com/gogits/gogs/modules/setting"
 )
 
-const APP_VER = "0.8.22.0115"
+const APP_VER = "0.8.23.0125"
 
 func init() {
 	runtime.GOMAXPROCS(runtime.NumCPU())
diff --git a/modules/ssh/ssh.go b/modules/ssh/ssh.go
index 41a87066309b..4a78d8455459 100644
--- a/modules/ssh/ssh.go
+++ b/modules/ssh/ssh.go
@@ -91,7 +91,7 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) {
 						return
 					}
 
-					req.Reply(true, nil);
+					req.Reply(true, nil)
 					go io.Copy(input, ch)
 					io.Copy(ch, stdout)
 					io.Copy(ch.Stderr(), stderr)
diff --git a/public/css/gogs.css b/public/css/gogs.css
index e37d7bdc96fb..02032e83a7c8 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -1490,6 +1490,9 @@ footer .container .links > *:first-child {
   border-radius: 3px;
   box-shadow: inset 0 -1px 0 #bbb;
 }
+.markdown input[type="checkbox"] {
+  vertical-align: middle !important;
+}
 .markdown .csv-data td,
 .markdown .csv-data th {
   padding: 5px;
diff --git a/public/less/_markdown.less b/public/less/_markdown.less
index f12d504f9c00..e59f6a591ffb 100644
--- a/public/less/_markdown.less
+++ b/public/less/_markdown.less
@@ -458,6 +458,10 @@
 		box-shadow:inset 0 -1px 0 #bbb;
 	}
 
+	input[type="checkbox"] {
+		vertical-align: middle !important;
+	}
+
 	.csv-data td,
 	.csv-data th {
 		padding:5px;
diff --git a/templates/.VERSION b/templates/.VERSION
index fbe31ee63281..aeb556ae95f7 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.8.22.0115
\ No newline at end of file
+0.8.23.0125
\ No newline at end of file