
08-14-2011, 12:46 PM
|
|
|
Join Date: Feb 2010
Posts: 133
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by HoSStiA
Fix for 4.1.5:
1). Open Plugin Manager and search for BBCode [spoiler]: button
2). Click on edit and change the hook to editor_toolbar_start
3). Replace the Plugin PHP Code with a new content:
PHP Code:
if ($show['editor_toolbar']) { $imgdir_editor = vB_Template_Runtime::fetchStyleVar('imgdir_editor'); $vbulletin->bbcodecache[] = array( 'buttonimage' => "$imgdir_editor/spoiler.gif", 'twoparams' => 0, 'bbcodetag' => 'spoiler', 'tag' => 'Spoiler', 'title' => 'Spoiler' );
$vbulletin->bbcodecache[] = array( 'buttonimage' => "$imgdir_editor/spoiler_a.gif", 'twoparams' => 1, 'bbcodetag' => 'spoiler', 'tag' => 'Spoiler +', 'title' => 'Spoiler +' ); }
|
Still not display the icon on toolbar.
|