Skip to content

Commit

Permalink
Merge branch 'hotfix-10.8.45' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Sep 8, 2017
2 parents 4e0f8f2 + 9b1fd17 commit a8f8c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion system/config/Config.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ component {
_loadConfigurationFromExtensions();

environments = {
local = "^local\.,\.local$,^localhost(:[0-9]+)?$,^127.0.0.1(:[0-9]+)?$"
local = "^local\.,\.local(:[0-9]+)?$,^localhost(:[0-9]+)?$,^127.0.0.1(:[0-9]+)?$"
};

}
Expand Down
2 changes: 1 addition & 1 deletion system/handlers/formcontrols/DataExportFieldPicker.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ component {
var propertyNames = presideObjectService.getObjectAttribute( objectName=objectName, attributeName="propertyNames" );
var props = presideObjectService.getObjectProperties( objectName=objectName );

args.defaultValue = dataExportService.getDefaultExportFieldsForObject( objectName ).selectFields.toList();
args.defaultValue = Len( args.defaultValue ?: "" ) ? args.defaultValue : dataExportService.getDefaultExportFieldsForObject( objectName ).selectFields.toList();
args.values = [];
args.labels = [];
args.multiple = true;
Expand Down

0 comments on commit a8f8c60

Please sign in to comment.