Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
conejoninja committed Mar 26, 2015
1 parent 810ce0a commit 06825b4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Osclass 3.5.6 2015-03-26
------------------------
- Fix typo

Osclass 3.5.5 2015-03-23
------------------------
- Fix typo on SQL query
Expand Down
2 changes: 1 addition & 1 deletion oc-includes/osclass/installer/basic_data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ INSERT INTO /*TABLE_PREFIX*/t_currency (pk_c_code, s_name, s_description, b_enab
('EUR', 'European Union euro', 'Euro €', true);

INSERT INTO /*TABLE_PREFIX*/t_preference VALUES
('osclass', 'version', 355, 'INTEGER')
('osclass', 'version', 356, 'INTEGER')
,('osclass', 'theme', 'bender', 'STRING')
,('osclass', 'admin_language', 'en_US', 'STRING')
,('osclass', 'language', 'en_US', 'STRING')
Expand Down
2 changes: 1 addition & 1 deletion oc-includes/osclass/upgrade-funcs.php
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@
osc_set_preference('marketURL', 'http://market.osclass.org/api/v2/');
}

osc_changeVersionTo(355);
osc_changeVersionTo(356);

if(!defined('IS_AJAX') || !IS_AJAX) {
if(empty($aMessages)) {
Expand Down
2 changes: 1 addition & 1 deletion oc-load.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/


define('OSCLASS_VERSION', '3.5.5');
define('OSCLASS_VERSION', '3.5.6');

if( !defined('ABS_PATH') ) {
define( 'ABS_PATH', str_replace('\\', '/', dirname(__FILE__) . '/' ));
Expand Down

0 comments on commit 06825b4

Please sign in to comment.