Skip to content

Commit

Permalink
Version 2.3.0.0 release tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesallsup committed Jul 30, 2016
1 parent 0a1bef8 commit 9a7b91d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/phpunit/bootstrap-dist.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
define('VERSION', '2.3.0.0_b1');
define('VERSION', '2.3.0.0');

define('ADMIN_USERNAME', '');
define('ADMIN_PASSWORD', '');
Expand Down
2 changes: 1 addition & 1 deletion tests/setup/config.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
define('VERSION', '2.3.0.0_b1');
define('VERSION', '2.3.0.0');
define('ADMIN_USERNAME', '');
define('ADMIN_PASSWORD', '');

Expand Down
2 changes: 1 addition & 1 deletion upload/admin/index.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// Version
define('VERSION', '2.3.0.0_b1');
define('VERSION', '2.3.0.0');

// Configuration
if (is_file('config.php')) {
Expand Down
2 changes: 1 addition & 1 deletion upload/index.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
// Version
define('VERSION', '2.3.0.0_b1');
define('VERSION', '2.3.0.0');

// Configuration
if (is_file('config.php')) {
Expand Down

2 comments on commit 9a7b91d

@OpenCartAddons
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jamesallsup Disregard my previous message. After looking through the code I noticed the backwards compatibility is implemented.

However, there is an issue with the language file loading for extensions that follow the old file structure. This is causing the incorrect extension name to appear in the extensions list.

Regards,
Joel.

@OpenCartAddons
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've submitted the fix #4710

Please sign in to comment.