Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public_html/css/main.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public_html/css/main.css.map

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions public_html/includes/js/build/formBuilder/formBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -1531,8 +1531,9 @@ function addMetadataStandard(val){
}

var options = metadataSchema;
var identifier = val.split(' : ')[1];
var standard = val.split(' : ')[0];
val = val.replace(/\s+/g, '');
var identifier = val.split(':')[1];
var standard = val.split(':')[0];

if(typeof identifier === 'undefined'){
identifier = '';
Expand Down Expand Up @@ -1723,7 +1724,7 @@ function metadataBinding(){

$(this).parent().parent().find($('input[type=text]')).each(function(index){
var select = $(this).prev('select').val();
value = select + " : " + $(this).val();
value = select + ":" + $(this).val();
valueObject[index] = value;
});

Expand Down
7 changes: 4 additions & 3 deletions public_html/includes/js/develop/createForm_form.js
Original file line number Diff line number Diff line change
Expand Up @@ -1531,8 +1531,9 @@ function addMetadataStandard(val){
}

var options = metadataSchema;
var identifier = val.split(' : ')[1];
var standard = val.split(' : ')[0];
val = val.replace(/\s+/g, '');
var identifier = val.split(':')[1];
var standard = val.split(':')[0];

if(typeof identifier === 'undefined'){
identifier = '';
Expand Down Expand Up @@ -1723,7 +1724,7 @@ function metadataBinding(){

$(this).parent().parent().find($('input[type=text]')).each(function(index){
var select = $(this).prev('select').val();
value = select + " : " + $(this).val();
value = select + ":" + $(this).val();
valueObject[index] = value;
});

Expand Down
4 changes: 2 additions & 2 deletions public_html/login/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}

?>

<!-- nagios check -->
<html>
<head>
<title>MFCS Login</title>
Expand Down Expand Up @@ -110,4 +110,4 @@
</div>

</body>
</html>
</html>