Skip to content

Commit

Permalink
Fixed default variable in language library
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed May 13, 2024
1 parent de13512 commit 51b9d65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions upload/system/library/language.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ class Language {
/**
* @var string
*/
protected string $default;
private string $default = 'en-gb';
/**
* @var string
*/
protected string $directory;
private string $directory;
/**
* @var array<string, string>
*/
Expand Down
4 changes: 2 additions & 2 deletions upload/system/storage/vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => 'opencart/opencart-3',
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => 'e2dae17c4230f21ee718b3eabfb0f6ca9b898cc8',
'reference' => 'de13512bf9ff23371a992cc5e9cac89d03e77a21',
'type' => 'project',
'install_path' => __DIR__ . '/../../../../../',
'aliases' => array(),
Expand Down Expand Up @@ -67,7 +67,7 @@
'opencart/opencart-3' => array(
'pretty_version' => 'dev-main',
'version' => 'dev-main',
'reference' => 'e2dae17c4230f21ee718b3eabfb0f6ca9b898cc8',
'reference' => 'de13512bf9ff23371a992cc5e9cac89d03e77a21',
'type' => 'project',
'install_path' => __DIR__ . '/../../../../../',
'aliases' => array(),
Expand Down

0 comments on commit 51b9d65

Please sign in to comment.