XHTML 1.0 Transitional. Click to learn more about our commitment to accessibility and standards.
 
A parameter, EDIT_CATALOGUE_URL, is referenced in the template, CATALOGUE_DEFAULT_CATEGORY_SCREEN, but not passed
 

Skip navigation

Category: 3.1.6

Title Author choosing problems on Internet Explorer
Description There are a number of minor, but annoying, problems with the 'Author choosing' interface on Internet Explorer.
Affects Internet Explorer users
Fix This will be fixed in the next patch release.

Back to the top

Comments / View


Title Calendar day view events
Description On the calendar day-view, events with long descriptions may display incorrectly (as raw HTML).
Affects All users
Fix Change line 11 of the CALENDAR_DAY_ENTRY template from:

Code

         {$TRUNCATE_SPREAD,{DESCRIPTION},{$MULT,{DOWN},20}}
to:

Code

         {$TRUNCATE_SPREAD,{DESCRIPTION},{$MULT,{DOWN},20},,1}

Back to the top

Comments / View


Title Certain deletable zones can't be deleted
Description If the personalzone or forum zones get auto-created, then the member cannot delete them again.
Affects Non-OCF users
Fix This will be fixed in the next patch release. In the meantime, the zone row can be deleted from the ocp2_zones database table.

Back to the top

Comments / View


Title Chat banning
Description The chat banning link is incorrectly shown for those who can't use it, and the link does not actually work.
Affects All
Fix This will be fixed in the next patch release. In the meantime, members may be IP-banned manually.

Back to the top

Comments / View


Title Comcode page export/delete buttons that should not be there
Description The export/delete buttons are present in the Comcode page editor, even when the page does not yet exist. Clicking them produces errors.
Affects All versions
Fix This will be fixed in the next patch release, but meantime, please don't click these buttons when making new pages.

Back to the top

Comments / View


Title Gallery zipping fails
Description The 'download gallery as zip' feature fails.
Affects All users
Fix A replacement for sources/zip.php is attached.
Fix files zip.zip

Back to the top

Comments / View


Title Handling of attachments when content is edited
Description If some content is posted by a user without the 'Reuse others attachments' specific permission, and then another user edits it and adds an attachment in the process, the new attachment cannot be displayed.
Affects All users
Fix This is a very complex bug, and will be fixed in the next patch release.

Back to the top

Comments / View


Title Member promotion
Description If a member's secondary group is promoted, to a group that the member is already another secondary member of, an error will be shown.
Affects OCF users
Fix Change line 305 of sources/ocf_posts_action.php from:

Code

            $GLOBALS['SITE_DB']->query_insert('f_group_members',array('gm_validated'=>1,'gm_member_id'=>$member_id,'gm_group_id'=>$_p));
to:

Code

            $GLOBALS['SITE_DB']->query_insert('f_group_members',array('gm_validated'=>1,'gm_member_id'=>$member_id,'gm_group_id'=>$_p),false,true);

Back to the top

Comments / View


Title Network-links editing screen
Description This screen does not work correctly.
Affects All
Fix This will be fixed in the next patch release. In the meantime, the netlink.txt file can be edited manually.

Back to the top

Comments / View


Title Problems with Comcode editor on Internet Explorer
Description There are a number of minor, but annoying, problems using the Comcode editing interface buttons on Internet Explorer.
Affects Internet Explorer users
Fix This will be fixed in the next patch release.

Back to the top

Comments / View


Title Quiz points are awarded incorrectly
Description Members entering a survey or quiz are meant to automatically be awarded points, whilst members entering a test are meant to get them based on how well they do. This was the wrong way around.
Affects All versions
Fix Change line 527 of site/pages/modules/quiz.php from:

Code

      if ((get_option('is_on_points')=='1') && ($quiz['q_points_for_passing']!=0) && (($quiz['q_type']=='TEST') || ($minimum_percentage>=$quiz['q_percentage'])))
to:

Code

      if ((get_option('is_on_points')=='1') && ($quiz['q_points_for_passing']!=0) && (($quiz['q_type']!='TEST') || ($minimum_percentage>=$quiz['q_percentage'])))

Back to the top

Comments / View


Title side_calendar block problem
Description Events on the last day of a month, that have a start time, will not be shown.
Affects Users of the side_calendar block, in month mode
Fix Change line 77 of sources/blocks/side_calendar.php from:

Code

         $period_end=mktime(0,0,0,$month+1,0,$year);
to:

Code

         $period_end=mktime(23,59,0,$month+1,0,$year);

Back to the top

Comments / View


Title The cms_catalogues module can crash badly if it crashes at all
Description If something goes wrong in this module, then the stack trace fails to be generated, making bugs harder to diagnose.
Affects Newer PHP versions
Fix This will be fixed in the next patch release, but it is only really of concern to ocProducts, as it made things more difficult for us to debug.

Back to the top

Comments / View


Title The feedback block will fail is commenting is disabled
Description If commenting is disabled on the website, or a user does not have permission to comment, the feedback block fails. Whilst the feedback block does use the commenting system, it should be an exception to these limitations.
Affects All users
Fix This will be fixed in the next patch release.

Back to the top

Comments / View


Title The quiz points points-log message is ugly
Description The log message shown on the points profile page includes an unresolved language string reference.
Affects All versions
Fix Change line 536 of site/pages/modules/quiz.php from:

Code

         system_gift_transfer(do_lang('POINTS_COMPLETED_QUIZ'),$quiz['q_points_for_passing'],get_member());
to:

Code

         system_gift_transfer(do_lang('POINTS_COMPLETED_QUIZ',text_lookup_original($quiz['q_name'])),$quiz['q_points_for_passing'],get_member());

Back to the top

Comments / View


Title Various importer problems
Description There are various little bugs in various importers.
Affects Users importing
Fix These will be fixed in the next patch release. Users having difficulty importing should request assistance from ocProducts, as we may be able to help in a wider sense.

Back to the top

Comments / View