Skip to content

Commit

Permalink
Version 10.6.2 update
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisjacquet committed Jan 2, 2023
1 parent e08d783 commit 9a2d812
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @package RosarioSIS
* @version 10.6.1 - December, 2022
* @version 10.6.2 - January, 2023
* @copyright (C) 2004-2009 The Miller Group
* @copyright (C) 2006 Andrew Schmadeke (Discipline & Student Billing modules)
* @copyright (C) 2009 Glenn-Abbey Software
Expand Down
2 changes: 1 addition & 1 deletion ProgramFunctions/Update.fnc.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function Update()
* Prevent DB version update if new Update.fnc.php file has NOT been uploaded YET.
* Update must be run once both new Warehouse.php & Update.fnc.php files are uploaded.
*/
if ( version_compare( '10.6.1', ROSARIO_VERSION, '<' ) )
if ( version_compare( '10.6.2', ROSARIO_VERSION, '<' ) )
{
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion Warehouse.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @package RosarioSIS
*/

define( 'ROSARIO_VERSION', '10.6.1' );
define( 'ROSARIO_VERSION', '10.6.2' );

/**
* Include config.inc.php file.
Expand Down
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@
</p>
<p class="center size-1">
&copy; 2004-2009 The Miller Group &amp; Learners Circle
<br />&copy; 2012-2022 <a href="https://www.rosariosis.org" noreferrer>RosarioSIS</a>
<br />&copy; 2012-2023 <a href="https://www.rosariosis.org" noreferrer>RosarioSIS</a>
</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion rosariosis.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2228,7 +2228,7 @@ INSERT INTO attendance_codes VALUES (NEXTVAL('attendance_codes_id_seq'), 2022, 1
--

INSERT INTO config VALUES (0, 'LOGIN', 'No');
INSERT INTO config VALUES (0, 'VERSION', '10.6.1');
INSERT INTO config VALUES (0, 'VERSION', '10.6.2');
INSERT INTO config VALUES (0, 'TITLE', 'Rosario Student Information System');
INSERT INTO config VALUES (0, 'NAME', 'RosarioSIS');
INSERT INTO config VALUES (0, 'MODULES', 'a:13:{s:12:"School_Setup";b:1;s:8:"Students";b:1;s:5:"Users";b:1;s:10:"Scheduling";b:1;s:6:"Grades";b:1;s:10:"Attendance";b:1;s:11:"Eligibility";b:1;s:10:"Discipline";b:1;s:10:"Accounting";b:1;s:15:"Student_Billing";b:1;s:12:"Food_Service";b:1;s:9:"Resources";b:1;s:6:"Custom";b:1;}');
Expand Down
2 changes: 1 addition & 1 deletion rosariosis_mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2179,7 +2179,7 @@ INSERT INTO attendance_codes VALUES (NULL, 2022, 1, 'Excused Absence', 'E', 'off
--

INSERT INTO config VALUES (0, 'LOGIN', 'No', NULL, NULL);
INSERT INTO config VALUES (0, 'VERSION', '10.6.1', NULL, NULL);
INSERT INTO config VALUES (0, 'VERSION', '10.6.2', NULL, NULL);
INSERT INTO config VALUES (0, 'TITLE', 'Rosario Student Information System', NULL, NULL);
INSERT INTO config VALUES (0, 'NAME', 'RosarioSIS', NULL, NULL);
INSERT INTO config VALUES (0, 'MODULES', 'a:13:{s:12:"School_Setup";b:1;s:8:"Students";b:1;s:5:"Users";b:1;s:10:"Scheduling";b:1;s:6:"Grades";b:1;s:10:"Attendance";b:1;s:11:"Eligibility";b:1;s:10:"Discipline";b:1;s:10:"Accounting";b:1;s:15:"Student_Billing";b:1;s:12:"Food_Service";b:1;s:9:"Resources";b:1;s:6:"Custom";b:1;}', NULL, NULL);
Expand Down

0 comments on commit 9a2d812

Please sign in to comment.