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.
Actions
Added by krileon almost 13 years ago. Updated almost 13 years ago.
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.
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 ) );