[REQ] Usergroup Individual HTML Markup (Strikethrough Fix)

Nights

New Member
http://www.vbulletin.org/forum/showpost.php?p=1589300&postcount=75

I need this part of the thread please.
Is the fix for the striketrough bug in the mod of Individual Html Markup.

Thanks.
 
A quick fix for the strikethrough:

1. AdminCP > Plugins & Products > Plugin Manager > Find the Plugin Titled: "Opserty: (6) Apply Markup"
2. Click the Title or click on [Edit]
3. In the "PHP Code:" text box. Find:
Code:
$user['musername'] = str_replace('{OP_USERNAME}', $username, $user['op_markup']);
4. Replace it with:
Code:
$user['musername'] = str_replace(array('{OP_USERNAME}', 'strikethrough'), array($username, 'line-through'), $user['op_markup']);
5. Hit Save.
 
Back
Top