You are here

Patches


Patches post v.0.30.1

1. Patch for ATutor Connector to solve double page header problem.

Edit ...../ck-api/at/connector.inc.php ,

After line 15,

require (AT_INCLUDE_PATH.'vitals.inc.php');

Add the following two lines,

ob_end_clean();
ob_start();

2. Patch for FusionTicket Connector to solve the problem of not being able to create files within data area.

Edit ...../ck-api/ft/connector.inc.php ,

At line 67,

$ckapi['hostsys']['dataarea'] = $_SHOP->user_files_dir ;

Replace the original line with the following line,

$ckapi['hostsys']['dataarea'] = $_SHOP->files_dir ;

3. Patch for inaccurate validation of (admission) application vetting records.

Edit ...../ck-registrar/inc/class.appvet.inc.php ,

At line 93,

$row = exapi_lang("Row") ;

Replace the original line with the following line,

$row = exapi_lang("Row") ; $accept=$reject=$rejectmeri=False;

At line 103,

$totpfactor=$totsfactor=0; $accept=$reject=$rejectmeri=False;

Replace the original line with the following line,

$totpfactor=$totsfactor=0;

4. Patch for inaccurate information (irrelevant data) shown in the student score card.

Edit ...../ck-student/inc/class.card.inc.php ,

At line 22,

$ck_sql.= "WHERE assessid=b.id and b.subjectid=c.id and d.studentid='$studentid' and b.id not in ($comp_sql) and " ;

Replace the original line with the following line,

$ck_sql.= "WHERE a.studentid='$studentid' and assessid=b.id and b.subjectid=c.id and d.studentid='$studentid' and b.id not in ($comp_sql) and " ;

Edit ...../ck-family/inc/class.card.inc.php ,

At line 22,

$ck_sql.= "WHERE assessid=b.id and b.subjectid=c.id and d.studentid='$studentid' and b.id not in ($comp_sql) and " ;

Replace the original line with the following line,

$ck_sql.= "WHERE a.studentid='$studentid' and assessid=b.id and b.subjectid=c.id and d.studentid='$studentid' and b.id not in ($comp_sql) and " ;

=====================================================================================================
=====================================================================================================
=====================================================================================================

Patches post v.0.25.1

1. Download the updated (osCommerce connector) connector.inc.php file attached to the following thread.

http://groups.google.com/group/CK-ERP-en/browse_thread/thread/936618f3f8...

Use the downloaded file to overwrite the existing file located at .../ck-api/osc22/connector.inc.php within an (osCommerce 2.2rc1 + CK-ERP v.0.25.1) environment. If your environment is not running osCommerce, this patch is not necessary.

*****************************************************************************************************
*****************************************************************************************************