From 4affd0a3a4fe086b31a87d56616f74093d2ac715 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Fri, 07 Mar 2014 14:59:02 -0500
Subject: [PATCH] Display an explanation in ticket page if the user can't propose commits

---
 src/site/administration.mkd |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/site/administration.mkd b/src/site/administration.mkd
index 7ed40eb..1a5aca1 100644
--- a/src/site/administration.mkd
+++ b/src/site/administration.mkd
@@ -94,22 +94,22 @@
 
 **How is this enforced?**
 
-Bob must set his *user.name* and *user.email* values for the repository to match his Gitblit user account **BEFORE** committing to his repository.
-<pre>
+Bob must properly set his *user.name* and *user.email* values for the repository to match his Gitblit user account **BEFORE** committing to his repository.
+
+```
 [user "bob"]
     displayName = Bob Jones
     emailAddress = bob@somewhere.com
-</pre>
-<pre>
+```
+
     git config user.name "Bob Jones"
     git config user.email bob@somewhere.com	
-</pre>
 or
 
     git config user.name bob
     git config user.email bob@somewhere.com	
 
-If the Gitblit account does not specify an email address, then the committer email address is ignored.  However, if the account does specify an address it must match the committer's email address.  Display name or username can be used as the committer name.
+The committer email address is required to be identical.  Display name or username can be used as the committer name.
 
 All checks are case-insensitive.
 

--
Gitblit v1.9.1