Are you familiar with modifying RCOs? (located at dev_flash/vsh/resource)
It depends what firmware you are on. and what package you have used. I have fixed this issue on Rebug CFW, and on playerpk420's CFW in the past. On those CFWs it was showing in the network category, and it required the explore plugin full rco to be extracted and the icons taken out and added to the relevant rco, in my case it was the explore_category_network.rco.
So in your case after you get the correct icons from the explore full rco then you would need to add those icons to the explore_category_user.rco. (and add the matching icon references to the main xml from inside the rco).
------------------------------------------------------------------------------------------------------------
Workaround: Another way to stop this bug from showing, is to just disable the item on the ingame xmb completely by modifying your cfw_settings_en.xml (located at dev_flash/vsh/resource/explore/xmb/ normally)
To do that, add the entry
"<Pair key="ingame"><String>disable</String></Pair>" near the top of the xml.
So change yours from this:
Code:
<Table key="cfw_settings">
<Pair key="icon_rsc"><String>tex_album_icon</String></Pair>
<Pair key="icon_notation"><String>WNT_XmbItemAlbum</String></Pair>
<Pair key="title"><String>★ Custom Firmware Tools</String></Pair>
<Pair key="info"><String></String></Pair>
</Table>
to this:
Code:
<Table key="cfw_settings">
<Pair key="icon_rsc"><String>tex_album_icon</String></Pair>
<Pair key="icon_notation"><String>WNT_XmbItemAlbum</String></Pair>
<Pair key="title"><String>★ Custom Firmware Tools</String></Pair>
<Pair key="info"><String></String></Pair>
<Pair key="ingame"><String>disable</String></Pair>
</Table>
-------------------------------------------------------------------------------------------------------------------
Personally I think there should be external icons used for this mod or it should be disabled on ingame XMB, then it would work correctly without rco mods.