Skip to content

Commit

Permalink
fix variable name mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
matdave committed Nov 16, 2023
1 parent f0cd261 commit e4c3209
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/lexicon/en/source.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
$_lang['prop_s3.endpoint_desc'] = 'Alternative S3-compatible endpoint URL, e.g., "https://s3.<region>.example.com". Review your S3-compatible provider’s documentation for the endpoint location. Leave empty for Amazon S3';
$_lang['prop_s3.region_desc'] = 'Region of the bucket. Example: us-west-1';
$_lang['prop_s3.prefix_desc'] = 'Optional path/folder prefix';
$_lang['prop_s3.no_bucket_check_desc'] = 'If set, don\'t attempt to check the bucket exists. It can be needed if the access key you are using does not have bucket creation/list permissions.';
$_lang['prop_s3.no_check_bucket_desc'] = 'If set, don\'t attempt to check the bucket exists. It can be needed if the access key you are using does not have bucket creation/list permissions.';
$_lang['s3_no_move_folder'] = 'The S3 driver does not support moving of folders at this time.';

/* ftp source type */
Expand Down
6 changes: 3 additions & 3 deletions core/src/Revolution/Sources/modS3MediaSource.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,9 @@ public function getDefaultProperties()
'value' => '',
'lexicon' => 'core:source',
],
'no_bucket_check' => [
'name' => 'no_bucket_check',
'desc' => 'prop_s3.no_bucket_check_desc',
'no_check_bucket' => [
'name' => 'no_check_bucket',
'desc' => 'prop_s3.no_check_bucket_desc',
'type' => 'combo-boolean',
'options' => '',
'value' => false,
Expand Down

0 comments on commit e4c3209

Please sign in to comment.