Actions
Bug #3430
closedConnections drop-down for invites doesn't parse names properly
Description
When attempting to return the name of a user in the connections drop-down it's using out of date API resulting in an error.
Updated by krileon over 12 years ago
Quick fix as follows.
IN: components/com_comprofiler/plugin/user/plug_cbgroupjive/cbgroupjive.class.php
ON: Line 1335
FROM:$list_users[] = moscomprofilerHTML::makeOption( $value, array_shift( $cbConn->getField( 'formatname', null, 'php', 'none', 'profile', 0, true ) ) );
TO:$list_users[] = moscomprofilerHTML::makeOption( $value, $cbConn->getField( 'formatname', null, 'html', 'none', 'profile', 0, true ) );
Actions