
08-01-2008, 04:28 PM
|
|
|
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
A quick fix for the strikethrough: - AdminCP > Plugins & Products > Plugin Manager > Find the Plugin Titled: "Opserty: (6) Apply Markup"
- Click the Title or click on [Edit]
- In the "PHP Code:" text box. Find:
PHP Code:
$user['musername'] = str_replace('{OP_USERNAME}', $username, $user['op_markup']);
- Replace it with:
PHP Code:
$user['musername'] = str_replace(array('{OP_USERNAME}', 'strikethrough'), array($username, 'line-through'), $user['op_markup']);
- Hit Save.
|