Skip to content

Commit

Permalink
fix for JENKINS-14640: create view form was not handled correctly on …
Browse files Browse the repository at this point in the history
…1.466 and above
  • Loading branch information
fcamblor committed Sep 18, 2012
1 parent e9a3bab commit 958c515
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -20,7 +20,7 @@ public class JenkinsConfigScmSyncStrategy extends AbstractScmSyncStrategy {
add(new PageMatcher("^configure$", "form[name='config']"));
// View configuration pages
add(new PageMatcher("^(.+/)?view/[^/]+/configure$", "form[name='viewConfig']"));
add(new PageMatcher("^newView$", "form[name='createView']"));
add(new PageMatcher("^newView$", "form[name='createView'],form[name='createItem']"));
} };

private static final String[] PATTERNS = new String[]{
Expand Down

0 comments on commit 958c515

Please sign in to comment.