HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Bug with spaces
Hi,
I found a bug when using this plugin on Roles with spaces like: "Confirm Email". It never shows the badge.
I used the following code to fix this issue:
class.RoleBadges.plugin.php
foreach( $roles as $role ) { echo 'span title="' . $role . '" class="RoleBadges ' . str_replace(' ', '', $role) . 'Badge"'; }
I only added a simple string replace for spaces and works fine.
3
Comments
Incorporating a fix!