-
-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make sure that <inputs> are always included in saved Enketo form output
Issue: #4875
- Loading branch information
alxndrsn
committed
Oct 19, 2018
1 parent
4d98b78
commit a2a6b12
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
*** unpatched 2018-10-18 19:54:23.332051962 +0200 | ||
--- patched 2018-10-18 19:56:45.975224812 +0200 | ||
*************** | ||
*** 469,474 **** | ||
--- 469,477 ---- | ||
var path = that.input.getName( $node ); | ||
var context; | ||
|
||
+ // /inputs is ALWAYS relevant #4875 | ||
+ if(/\/inputs$/.test(path)) return; | ||
+ | ||
/* | ||
* Copied from branch.js: | ||
* |