Showing 3 changed files with 7 additions and 5 deletions
+5 -3
CHANGES
... ...
@@ -1,11 +1,13 @@
1
-2.2 (4 June 2016)
1
+2.2.1 (2016-06-14)
2
+  - fix _search page error bug.
3
+2.2 (2016-06-04)
2 4
   - add command line merging interface to pull request page
3 5
   - add createing patch feture to pull request page
4
-2.1 (31 May 2016)
6
+2.1 (2016-05-31)
5 7
   - default login session time become 2 weeks and delete save check box.
6 8
   - Fix commits page author links.
7 9
   - add admin page link.
8
-2.0 (7 May 2016)
10
+2.0 (2016-05-07)
9 11
   - drop Perl 5.8 support, now require Perl 5.10.1
10 12
   - use own temparaly directory when creating repositoy with readme file. Now not use /tmp.
11 13
   - add Mojolicious::Plugin::DBViewer to cpanfile
+1 -1
lib/Gitprep.pm
... ...
@@ -17,7 +17,7 @@ use Time::Moment;
17 17
   eval {require Digest::SHA; import Digest::SHA qw(sha1 sha1_hex)};
18 18
 }
19 19
 
20
-our $VERSION = 'v2.2';
20
+our $VERSION = 'v2.2.1';
21 21
 
22 22
 has 'dbi';
23 23
 has 'git';
+1 -1
templates/settings.html.ep
... ...
@@ -107,7 +107,7 @@
107 107
       my $validation = $vc->validation;
108 108
       
109 109
       # Check default branch
110
-      if (length $default_branch > 300) {
110
+      if (defined $default_branch && length $default_branch > 300) {
111 111
         $validation->add_failed('default-branch' => 'default branch is too long');
112 112
       }
113 113