diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..a24bab5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+_notes/
\ No newline at end of file
diff --git a/changelog.md b/changelog.md
index 7e6cdf2..4a7fd12 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,4 +1,10 @@
# CHANGE LOG
+**4 August 2016**
+
+* Fix: #7 district level approver list can now be left blank if needed. Final will be handled by last group level approver.
+* Fix: #10 Special characters in goup name can now include / char.
+* Fix: #11 If forms fields have identical label text they will now render correctly in email and when viewing/editing.
+
**16 July 2016**
* Fix: Fixed the query section of the update user page. Now you can update user information
diff --git a/readme.md b/readme.md
index c197aca..90ad5e1 100644
--- a/readme.md
+++ b/readme.md
@@ -1,4 +1,4 @@
-# Workorders v2.0.0
+# Workorders v2.0.1
A simple way for large groups to organize work using custom forms!
diff --git a/src/classes/_notes/dwsync.xml b/src/classes/_notes/dwsync.xml
deleted file mode 100644
index c41608b..0000000
--- a/src/classes/_notes/dwsync.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/dbquery/_notes/dwsync.xml b/src/dbquery/_notes/dwsync.xml
deleted file mode 100644
index d0995bc..0000000
--- a/src/dbquery/_notes/dwsync.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/dbquery/qryGROUP/_notes/dwsync.xml b/src/dbquery/qryGROUP/_notes/dwsync.xml
deleted file mode 100644
index 73bb1e4..0000000
--- a/src/dbquery/qryGROUP/_notes/dwsync.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/dbquery/qryUSER/_notes/dwsync.xml b/src/dbquery/qryUSER/_notes/dwsync.xml
deleted file mode 100644
index db1e8f0..0000000
--- a/src/dbquery/qryUSER/_notes/dwsync.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/includes/pageformsbuild.php b/src/includes/pageformsbuild.php
index 4a22218..547d96f 100644
--- a/src/includes/pageformsbuild.php
+++ b/src/includes/pageformsbuild.php
@@ -10,6 +10,8 @@
$userAdapter = new UserDataAdapter($dsn, $user_name, $pass_word);
$userGroups = $userAdapter->SelectUniqueGroupNames();
$groupWorkflowSuffix = 'Workflow'; // appended to groupWorkflow id's
+ $illegalGroupChars = array(" ", "/"); // Include illegal characters for group name.
+ $replaceIllegalGroupChars = "-"; // Group name is used for HTML element id's so replace illegal chars with this char.
?>