BB Code Box 3 Version 1.0.9 ( Expanded Version)

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
oecherjung
Mitglied
Beiträge: 303
Registriert: 26.06.2009 08:12
Wohnort: Heinsberg
Kontaktdaten:

Re: BB Code Box 3 Version 1.0.9 ( Expanded Version)

Beitrag von oecherjung »

franki hat geschrieben:Mhh muß jetzt mal raten :-?
Hast Du den Wert in der includes/functions_display.php

Code: Alles auswählen

$num_predefined_bbcodes = 136;
auf

Code: Alles auswählen

$num_predefined_bbcodes = 152;
geändert ?

und was ich jetzt sehe in der posting_buttons.html
fehlt da nicht hinter

Code: Alles auswählen

//150 
,'[downloadbox]','[/downloadbox]'
noch

Code: Alles auswählen

//152 Begin Custom: ,'[bbcode]','[/bbcode]'
1. Ja den Code habe ich auf 152 gesetzt
2. //152 Begin Custom: ,'[bbcode]','[/bbcode]' habe ich nachgetragen - leider ohen Effekt.
(Globaler Cache und Template Cache wurde gelöscht)

Gruß

oechi

PS

Nochmal aktuell:

Relevanter Ausschnitt functions_display.php

Code: Alles auswählen

// Start counting from 22 for the bbcode ids (every bbcode takes two ids - opening/closing)
// note for bbcodebox3: new start counting from 110 for the bbcode ids (every bbcode takes two ids -   opening/closing)
// also note: for every own extra custom bbcode, you must add +2 to 110
// Bitte beachten: Für jeden eigenen extra Custom BBCode, musst du +2 zu 110 hinzufügen
	
	$num_predefined_bbcodes = 152;

	$user->add_lang('mods/info_acp_gallery');

	$sql = 'SELECT bbcode_id, bbcode_tag, bbcode_helpline
		FROM ' . BBCODES_TABLE . '
		WHERE display_on_posting = 1
		ORDER BY bbcode_tag';
	$result = $db->sql_query($sql);

lang_bbcodebox3.php

Code: Alles auswählen

<?php

/**
*
* @package - BBCodeBox3
* @version $Id: lang_bcodebox3.php 20 2008-05-23 22:27:54Z 4seven $
* @copyright (c) 4seven: http://sekuro.se.funpic.de/phpbb3/ - anti_mainstreamer@freenet.de
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/
if (!defined('IN_PHPBB'))
{
	exit;
}
if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

$lang = array_merge($lang, array(
    'BBCODE_CENTER_HELP'         => 'Zentrieren: [align=center]Text[/align]',
    'BBCODE_RIGHT_HELP'          => 'Rechtsbündig: [align=right]Text[/align]',
    'BBCODE_JUSTIFY_HELP'	   => 'Blocksatz: [align=justify]Text[/align]',
    'BBCODE_FLASH_I_HELP'        => 'Flash-Link einfügen (*.swf): markieren > Button anklicken',
    'BBCODE_SPOIL_HELP'          => 'Versteckter Text: [spoil]Text[/spoil] - oder auch mit eigenen Buttontext: [spoil=Buttontext]Text[/spoil]',
    'BBCODE_TEXTFLOW_L_HELP'     => 'Textfluß (Bild links - Text rechts): [img_l]http://bild_url[/img_l] Text',
    'BBCODE_TEXTFLOW_R_HELP'     => 'Textfluß (Text links - Bild rechts): [img_r]http://bild_url[/img_r] Text',
    'BBCODE_TEXTFLOW_BREAK_HELP' => 'Textfluß unterbrechen: [br][/br]',
    'BBCODE_YOUTUBE_HELP'        => 'YouTube Video einfügen: [youtube]http://video_url[/youtube]',
    'BBCODE_GVIDEO_HELP'         => 'GoogleVideo einfügen: [gvideo]http://video_url[/gvideo]',
    'BBCODE_MYSPACE_HELP'        => 'MySpace Video einfügen: [myspace]http://video_url[/myspace]',
    'BBCODE_MYVIDEO_HELP'        => 'MyVideo einfügen: [myvideo]http://video_url[/myvideo]',
    'BBCODE_CLIPFISH_HELP'       => 'Clipfish Video einfügen: [clipfish]http://video_url[/clipfish]',
    'BBCODE_FLV_HELP'            => 'FLV-Link einfügen (*.flv): [flv]http://video_url[/flv]',
    'BBCODE_STREAM_HELP'         => 'MP3-Link einfügen (*.mp3): [stream]http://video_url[/stream]',
    'BBCODE_MOV_HELP'            => 'Quicktime-Link einfügen (*.mov): [mov]http://video_url[/mov]',
    'BBCODE_SUP_HELP'            => 'Hochgestellt: E=mc[sup]2[/sup]',
    'BBCODE_SUB_HELP'            => 'Tiefgestellt: H[sub]2[/sub]O',
    'BBCODE_MARQD_HELP'          => 'Text oder Bild nach unten laufen lassen: [marq=down]Text[/marq]',
    'BBCODE_MARQU_HELP'          => 'Text oder Bild nach oben laufen lassen: [marq=up]Text[/marq]',
    'BBCODE_MARQL_HELP'          => 'Text oder Bild nach links laufen lassen: [marq=left]Text[/marq]',
    'BBCODE_MARQR_HELP'          => 'Text oder Bild nach rechts laufen lassen: [marq=right]Text[/marq]',
    'BBCODE_FT_HELP'	         => 'Schriftart: [font=Arial]Text[/font]',
    'BBCODE_FC_HELP'		   => 'Schriftfarbe: [color=red]Text[/color]',
    'BBCODE_STRIKE_HELP'	   => 'Durchgestrichen: [strike]Text[/strike]',
    'BBCODE_RM_HELP'             => 'RealMedia-Link einfügen (*.rm / *.ram): [rm]http://video_url[/rm]',
    'BBCODE_WMV_HELP'            => 'Windows Media einfügen (*.wmv): [wmv]http://video_url[/wmv]',
    'BBCODE_HR_HELP'             => 'Trennlinie / Horizontale Linie: [hr][/hr]',
    'BBCODE_MAIL_HELP'           => 'Mail-Adresse einfügen: [mail=mailadresse]Text[/url]',
    'FONT_TYPE'			       => 'Schriftart',
    'BBCODE_DAILYMOTION_HELP'	 	 => 'Dailymotion Video: [dailymotion]http://video_url[/dailymotion]',
    'BBCODE_GAMESPOT_HELP'		 => 'GameSpot Video: [gamespot]http://video_url[/gamespot]',
    'BBCODE_GAMETRAILERS_HELP'	 => 'GameTrailers Video: [gametrailer]http://video_url[/gametrailer]',
    'BBCODE_GOTGAME_HELP'		 => 'GotGame Video: [gotgame]http://video_url[/gotgame]',
    'BBCODE_GAMEVIDEOS_HELP'	 	 => 'GameVideos Video: [gamevideos]http://video_url[/gamevideos]',
    'BBCODE_STREETFIRE_HELP'	 	 => 'StreetFire Video: [streetfire]http://video_url[/streetfire]',
    'BBCODE_XFIRE_HELP'			 => 'xFire Video: [xfire]http://video_url[/xfire]',
    'BBCODE_EBAYLINK_HELP'		 => 'eBay Link: [ebay=Artikelnummer]Artikelname[/ebay] - oder: [ebay]http://artikel_url[/ebay] - oder: [ebaylive]Artikelnummer[/ebaylive]',
    'BBCODE_SEARCH_HELP'		 => 'Forumsuchergebnisse verlinken: [search=Keywords]Text[/search]',
    'BBCODE_OFFTOPIC_HELP'		 => 'OffTopic Textbox: [ot]Text[/ot]',
    'BBCODE_WIKI_HELP'		 	 => 'Wikipedia Link: [wiki=Begriff]Text[/wiki]',
    'BBCODE_DIVX_HELP'		 	 => 'DivX Video: [divx]http://video_url[/divx]',
    'BBCODE_TABLE_HELP'		 	 => 'Öffnet Tabellengenerator',
    'BBCODE_SPOILER_HIDE'		 => 'verstecken',
    'BBCODE_SPOILER_VIEW'		 => 'anzeigen',
    'BBCODE_WARNING_HELP'		 => 'Warntext: [warning]Text[/warning]',
    'BBCODE_COLLUMN_HELP'		 => '2-Spalten Text: [col]Text linke Spalte | Text rechte Spalte[/col]',
    'BBCODE_INDENT_HELP'		 => 'Texteinzug: [indent]Text[/indent]',
    'BBCODE_OUTDENT_HELP'		 => 'Textauszug: [outdent]Text[/outdent]',
    'BBCODE_GALLERY_HELP'		 => '[album]{NUMBER}[/album]',
    'BBCODE_PROGRESS_HELP'		 => '[prog={NUMBER}]{TEXT}[/prog]',
    'BBCODE_SMILIE_HELP'		 => '[smilie]{TEXT}[/smilie]',
    'BBCODE_PASS_HELP'		 	 => '[pass_box]Das Passwort[/pass_box]',
    'BBCODE_DOWNLOAD_HELP'		 => '[downloadbox]Download Link[/downloadbox]',
    'BBCODE_FLAG_HELP'		       => '[flag]Code des Landes[/flag]',
    'BBCODE_PIECHART'		 	 => '[piechart]Data,Labels[/piechart] Daten and Namen werden durch * getrennt',
    'BBCODE_PAYPAL'			 => '[spaypal=Meine.Mail@Adr.de,EUR,12.99]Verwendungszweck[/spaypal]',







/**
Alttext für die Buttons > IMG ALT=""
*/
	'BBCODE_IMGALT_CENTER'		=> 'Text zentrieren',
	'BBCODE_IMGALT_JUSTIFY'		=> 'Blocksatz',
	'BBCODE_IMGALT_RIGHT'		=> 'Text rechtsbündig',
	'BBCODE_IMGALT_B'			=> 'Fettschrift',
	'BBCODE_IMGALT_I'			=> 'Kursiv',
	'BBCODE_IMGALT_U'			=> 'Unterstrichen',
	'BBCODE_IMGALT_STRIKE'		=> 'Durchgestrichen',
	'BBCODE_IMGALT_SUP'		=> 'Text hochstellen',
	'BBCODE_IMGALT_SUB'		=> 'Text runterstellen',
	'BBCODE_IMGALT_HR'		=> 'Horizintale Linie',
	'BBCODE_IMGALT_LIST'		=> 'Liste',
	'BBCODE_IMGALT_LISTORDER'	=> 'Geordnete Liste',
	'BBCODE_IMGALT_LISTPOINT'	=> 'Listenpunkt hinzufügen',
	'BBCODE_IMGALT_MARQD'		=> 'Text runter laufen lassen',
	'BBCODE_IMGALT_MARQU'		=> 'Text hoch laufen lassen',
	'BBCODE_IMGALT_MARQL'		=> 'Text nach links laufen lassen',
	'BBCODE_IMGALT_MARQR'		=> 'Text nach rechts laufen lassen',
	'BBCODE_IMGALT_SPOILER'		=> 'Versteckter Text',
	'BBCODE_IMGALT_QUOTE'		=> 'Zitat',
	'BBCODE_IMGALT_CODE'		=> 'Code',
	'BBCODE_IMGALT_URL'		=> 'Link einfügen',
	'BBCODE_IMGALT_EMAIL'		=> 'Email einfügen',
	'BBCODE_IMGALT_IMG'		=> 'Bild einfügen',
	'BBCODE_IMGALT_TEXTFLOWL'	=> 'Text rechts um ein Bild fließen lassen',
	'BBCODE_IMGALT_TEXTFLOWR'	=> 'Text links um ein Bild fließen lassen',
	'BBCODE_IMGALT_TEXTFLOWBREAK'	=> 'Textfluß unterbrechen',
	'BBCODE_IMGALT_FLV'		=> 'FLV Video einfügen',
	'BBCODE_IMGALT_STREAM'		=> 'mp3 Sound einfügen',
	'BBCODE_IMGALT_FLASH'		=> 'Flash (swf) einfügen',
	'BBCODE_IMGALT_MOV'		=> 'QuickTime Video einfügen',
	'BBCODE_IMGALT_RM'		=> 'RealMovie einfügen',
	'BBCODE_IMGALT_WMV'		=> 'WindowsMediaVideo einfügen',
	'BBCODE_IMGALT_YOUTUBE'		=> 'YouTube Video einfügen',
	'BBCODE_IMGALT_GVIDEO'		=> 'GoogleVideo Video einfügen',
	'BBCODE_IMGALT_MYSPACE'		=> 'MySpace Video einfügen',
	'BBCODE_IMGALT_MYVIDEO'		=> 'MyVideo Video einfügen',
	'BBCODE_IMGALT_CLIPFISH'	=> 'ClipFish Video einfügen',
	'BBCODE_IMGALT_DAILYMOTION'	=> 'Dailymotion Video einfügen',
	'BBCODE_IMGALT_GAMESPOT'	=> 'GameSpot Video einfügen',
	'BBCODE_IMGALT_GAMETRAILERS'	=> 'GameTrailers Video einfügen',
	'BBCODE_IMGALT_GOTGAME'		=> 'GotGame Video einfügen',
	'BBCODE_IMGALT_GAMEVIDEOS'	=> 'Gamevideos Video einfügen',
	'BBCODE_IMGALT_STREETFIRE'	=> 'Streetfire Video einfügen',
	'BBCODE_IMGALT_XFIRE'		=> 'xFire Video einfügen',
      'BBCODE_IMGALT_EBAYLINK'	=> 'eBay Link einfügen',
      'BBCODE_IMGALT_SEARCH'		=> 'Forumsuchbegriffe verlinken',
      'BBCODE_IMGALT_OT'		=> 'OffTopic Textbox',
      'BBCODE_IMGALT_WIKI'		=> 'Wikipedia Link',
      'BBCODE_IMGALT_DIVX'		=> 'DivX Video einfügen',
      'BBCODE_IMGALT_TABLE'		=> 'Tabellengenerator',
      'BBCODE_IMGALT_WARNING'		=> 'Warnung hinzufügen',
      'BBCODE_IMGALT_COLLUMN'		=> '2-spaltigen Text erstellen',
	'BBCODE_IMGALT_INDENT'		=> 'Texteinzug in erste Zeile',
	'BBCODE_IMGALT_OUTDENT'		=> 'Textauszug in erste Zeile',
      'BBCODE_IMGALT_GALLERY'		=> 'Galerie Bild einfügen',
      'BBCODE_IMGALT_PROGRESS'	=> 'Prozent Fortschritt',
      'BBCODE_IMGALT_SMILIE'	 	=> 'Smilie Schild',
      'BBCODE_IMGALT_PASS'	 	=> 'Passwort Fenster',
      'BBCODE_IMGALT_PIECHART' 	=> 'Kreisdiagramm',
      'BBCODE_IMGALT_PAYPAL' 	 	=> 'Paypal Bezahlbutton',
	'BBCODE_IMGALT_FLAG' 	 	=> 'Landesflagge einfügen.',
	'BBCODE_IMGALT_DOWNLOAD'	=> 'Externen Download Link einfügen.',
	'BBCODE_IMGALT_VIMEO_HELP' 	=> 'Video von Vimeo.com einfügen.',

));

?>

posting_buttons.html

Code: Alles auswählen

<script type="text/javascript">
// <![CDATA[
	var form_name = 'postform';
	var text_name = <!-- IF $SIG_EDIT -->'signature'<!-- ELSE -->'message'<!-- ENDIF -->;
	var load_draft = false;
	var upload = false;

	// Define the bbCode tags
	var bbcode = new Array();
		var bbtags = new Array(
//0
'[b]','[/b]'
//2
,'[i]','[/i]'
//4
,'[u]','[/u]'
//6
,'[quote]','[/quote]'
//8
,'[code]','
'
//10
,'
  • ','
'
//12
,'
  • ','
'
//14 Listenpunkt [*]
,'[img]','[/img]'
//16
,'',''
//18 Flash phpbb3-intern
,'[flash=]','[/flash]'
//20 Font - Size - phpbb3-intern
,'[size=]','[/size]'
//22
,'[align=center]','[/align]'
//24
,'[align=right]','[/align]'
//26
,'[spoil]','[/spoil]'
//28
,'[spoil=]','[/spoil]'
//30
,'[img_l]','[/img_l]'
//32
,'[flash_i]','[/flash_i]'
//34
,'[img_r]','[/img_r]'
//36
,'[br]','[/br]'
//38
,'[youtube]','[/youtube]'
//40
,'[gvideo]','[/gvideo]'
//42
,'[myspace]','[/myspace]'
//44
,'[myvideo]','[/myvideo]'
//46
,'[clipfish]','[/clipfish]'
//48
,'[flv]','[/flv]'
//50
,'[stream]','[/stream]'
//52
,'[mov]','[/mov]'
//54
,'[sup]','[/sup]'
//56
,'[sub]','[/sub]'
//58
,'[marq=down]','[/marq]'
//60
,'[marq=up]','[/marq]'
//62
,'[marq=left]','[/marq]'
//64
,'[marq=right]','[/marq]'
//66
,'[strike]','[/strike]'
//68
,'[align=justify]','[/align]'
//70
,'[rm]','[/rm]'
//72
,'[wmv]','[/wmv]'
//74
,'[hr]','[/hr]'
//76
,'[mail=]','[/mail]'
//77 Font - Type
//79 Font - Color
//78
,'[dailymotion]','[/dailymotion]'
//80
,'[gamespot]','[/gamespot]'
//82
,'[gametrailers]','[/gametrailers]'
//84
,'[gotgame]','[/gotgame]'
//86
,'[gamevideos]','[/gamevideos]'
//88
,'[streetfire]','[/streetfire]'
//90
,'[xfire]','[/xfire]'
//92
,'[ebay=]','[/ebay]'
//94
,'[ot]','[/ot]'
//96
,'[search=]','[/search]'
//98
,'[wiki=]','[/wiki]'
//100
,'[divx]','[/divx]'
//102
,'[warning]','[/warning]'
//104
,'[col]','[/col]'
//106
,'[indent]','[/indent]'
//108
,'[outdent]','[/outdent]'
//110
,'[megavideo]','[/megavideo]'
//112
,'[metacafe]','[/metacafe]'
//114
,'[veoh]','[/veoh]'
//116
,'[vimeo]','[/vimeo]'
//118
,'[soundcloud]','[/soundcloud]'
//120
,'[slide]','[/slide]'
//122
,'[pbslide]','[/pbslide]'
//124
,'[flickr]','[/flickr]'
//126
,'[picasa]','[/picasa]'
//128
,'[user]','[/user]'
//130
,'[web_thumb]','[/web_thumb]'
//132
,'[copyright]','[/copyright]'
//134
,'[copyright=]','[/copyright]'
//136
,'[album]','[/album]'
//138
,'[prog=]','[/prog]'
//140
,'[smilie]','[/smilie]'
//142
,'[pass_box]','[/pass_box]'
//144
,'[piechart]','[/piechart]'
//146
,'[spaypal=,,]','[/spaypal]'
//148
,'[flag]','[/flag]'
//150
,'[downloadbox]','[/downloadbox]'
//152 Begin Custom: ,'[bbcode]','[/bbcode]'

<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->);
var imageTag = false;

// Helpline messages
var help_line = {
b: '{LA_BBCODE_B_HELP}',
i: '{LA_BBCODE_I_HELP}',
u: '{LA_BBCODE_U_HELP}',
q: '{LA_BBCODE_Q_HELP}',
c: '{LA_BBCODE_C_HELP}',
l: '{LA_BBCODE_L_HELP}',
o: '{LA_BBCODE_O_HELP}',
p: '{LA_BBCODE_P_HELP}',
w: '{LA_BBCODE_W_HELP}',
a: '{LA_BBCODE_A_HELP}',
s: '{LA_BBCODE_S_HELP}',
f: '{LA_BBCODE_F_HELP}',
e: '{LA_BBCODE_E_HELP}',
d: '{LA_BBCODE_D_HELP}'

,center: '{LA_BBCODE_CENTER_HELP}'
,right: '{LA_BBCODE_RIGHT_HELP}'
,flash_i: '{LA_BBCODE_FLASH_I_HELP}'
,spoil: '{LA_BBCODE_SPOIL_HELP}'
,textflow_l: '{LA_BBCODE_TEXTFLOW_L_HELP}'
,textflow_r: '{LA_BBCODE_TEXTFLOW_R_HELP}'
,textflow_break: '{LA_BBCODE_TEXTFLOW_BREAK_HELP}'
,flash_i: '{LA_BBCODE_FLASH_I_HELP}'
,youtube: '{LA_BBCODE_YOUTUBE_HELP}'
,gvideo: '{LA_BBCODE_GVIDEO_HELP}'
,myspace: '{LA_BBCODE_MYSPACE_HELP}'
,myvideo: '{LA_BBCODE_MYVIDEO_HELP}'
,clipfish: '{LA_BBCODE_CLIPFISH_HELP}'
,flv: '{LA_BBCODE_FLV_HELP}'
,stream: '{LA_BBCODE_STREAM_HELP}'
,mov: '{LA_BBCODE_MOV_HELP}'
,sup: '{LA_BBCODE_SUP_HELP}'
,sub: '{LA_BBCODE_SUB_HELP}'
,marqd: '{LA_BBCODE_MARQD_HELP}'
,marqu: '{LA_BBCODE_MARQU_HELP}'
,marql: '{LA_BBCODE_MARQL_HELP}'
,marqr: '{LA_BBCODE_MARQR_HELP}'
,ft: '{LA_BBCODE_FT_HELP}'
,fc: '{LA_BBCODE_FC_HELP}'
,strike: '{LA_BBCODE_STRIKE_HELP}'
,justify: '{LA_BBCODE_JUSTIFY_HELP}'
,rm: '{LA_BBCODE_RM_HELP}'
,wmv: '{LA_BBCODE_WMV_HELP}'
,hr: '{LA_BBCODE_HR_HELP}'
,mail: '{LA_BBCODE_MAIL_HELP}'
,tip: '{L_STYLES_TIP}'
,dailymotion: '{LA_BBCODE_DAILYMOTION_HELP}'
,gamespot: '{LA_BBCODE_GAMESPOT_HELP}'
,gametrailers: '{LA_BBCODE_GAMETRAILERS_HELP}'
,gotgame: '{LA_BBCODE_GOTGAME_HELP}'
,gamevideos: '{LA_BBCODE_GAMEVIDEOS_HELP}'
,streetfire: '{LA_BBCODE_STREETFIRE_HELP}'
,xfire: '{LA_BBCODE_XFIRE_HELP}'
,ebaylink: '{LA_BBCODE_EBAYLINK_HELP}'
,ot: '{LA_BBCODE_OFFTOPIC_HELP}'
,searchlink: '{LA_BBCODE_SEARCH_HELP}'
,wiki: '{LA_BBCODE_WIKI_HELP}'
,divx: '{LA_BBCODE_DIVX_HELP}'
,table: '{LA_BBCODE_TABLE_HELP}'
,warning: '{LA_BBCODE_WARNING_HELP}'
,col: '{LA_BBCODE_COLLUMN_HELP}'
,indent: '{LA_BBCODE_INDENT_HELP}'
,outdent: '{LA_BBCODE_OUTDENT_HELP}'
,megavideo: '{LA_BBCODE_MEGAVIDEO_HELP}'
,metacafe: '{LA_BBCODE_METACAFE_HELP}'
,veoh: '{LA_BBCODE_VEOH_HELP}'
,vimeo: '{LA_BBCODE_VIMEO_HELP}'
,soundcloud: '{LA_BBCODE_SOUNDCLOUD_HELP}'
,slide: '{LA_BBCODE_SLIDE_HELP}'
,pbslide: '{LA_BBCODE_PBSLIDE_HELP}'
,flickr: '{LA_BBCODE_FLICKR_HELP}'
,picasa: '{LA_BBCODE_PICASA_HELP}'
,user: '{LA_BBCODE_USER_HELP}'
,web_thumb: '{LA_BBCODE_WEBTHUMB_HELP}'
,copyright: '{LA_BBCODE_COPYRIGHT_HELP}'
,gallery: '{LA_BBCODE_GALLERY_HELP}'
,progress: '{LA_BBCODE_PROGRESS_HELP}'
,smilie: '{LA_BBCODE_SMILIE_HELP}'
,pass: '{LA_BBCODE_PASS_HELP}'
,piechart: '{LA_BBCODE_PIECHART_HELP}'
,paypal: '{LA_BBCODE_PAYPAL_HELP}'
,flag: '{LA_BBCODE_FLAG_HELP}'
,download: '{LA_BBCODE_DOWNLOAD_HELP}'





<!-- BEGIN custom_tags -->
,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
<!-- END custom_tags -->
}

var panels = new Array('options-panel', 'attach-panel', 'poll-panel');
var show_panel = 'options-panel';


// ]]>
</script>
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>

<!-- IF S_BBCODE_ALLOWED -->
<!-- /removed-by-BBCodeBox3/4seven-2008/
<div id="colour_palette" style="display: none;">
<dl style="clear: left;">
<dt><label>{L_FONT_COLOR}:</label></dt>
<dd>
<script type="text/javascript">
// <![CDATA[
function change_palette()
{
dE('colour_palette');
e = document.getElementById('colour_palette');

if (e.style.display == 'block')
{
document.getElementById('bbpalette').value = '{LA_FONT_COLOR_HIDE}';
}
else
{
document.getElementById('bbpalette').value = '{LA_FONT_COLOR}';
}
}

colorPalette('h', 15, 10);
// ]]>
</script>
</dd>
</dl>
</div>
/removed-by-BBCodeBox3/4seven-2008/ -->

<div id="format-buttons">

<table class="posttablecolorprosilver" id="posttable" width="100%" border="0" style="border-collapse: collapse;" cellspacing="0" cellpadding="0">
<tr>
<td class="tdbgbox">

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<select class="fontbox" name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 0;" onmouseover="helpline('f');" onmouseout="helpline('tip');">
<option selected="selected" value="">{L_FONT_SIZE}</option>
<option value="50">{L_FONT_TINY}</option>
<option value="85">{L_FONT_SMALL}</option>
<option value="100">{L_FONT_NORMAL}</option>
<option value="150">{L_FONT_LARGE}</option>
<option value="200">{L_FONT_HUGE}</option>
</select>

<select class="fontbox" name="addbbcode77" onchange="bbfontstyle('[font=' + this.form.addbbcode77.options[this.form.addbbcode77.selectedIndex].value + ']', '[/font]');this.form.addbbcode77.selectedIndex = 0;" onmouseover="helpline('ft');" onmouseout="helpline('tip');">
<option selected="selected" value="">{L_FONT_TYPE}</option>
<option style="font-family: Arial" value="Arial">Arial</option>
<option style="font-family: Arial Black" value="Arial Black">Arial Black</option>
<option style="font-family: Century Gothic" value="Century Gothic">Century Gothic</option>
<option style="font-family: Comic Sans MS" value="Comic Sans MS">Comic Sans MS</option>
<option style="font-family: Georgia" value="Georgia">Georgia</option>
<option style="font-family: Verdana" value="Verdana">Verdana</option>
<option style="font-family: Courier New" value="Courier New">Courier New</option>
<option style="font-family: Times New Roman" value="Times New Roman">Times New Roman</option>
<option style="font-family: Trebuchet MS" value="Trebuchet MS">Trebuchet MS</option>
<option style="font-family: Impact" value="Impact">Impact</option>
</select>

<select class="fontbox" name="addbbcode79" onchange="bbfontstyle('[color=' + this.form.addbbcode79.options[this.form.addbbcode79.selectedIndex].value + ']', '[/color]');this.form.addbbcode79.selectedIndex = 0;" onmouseover="helpline('fc');" onmouseout="helpline('tip');">
<option selected="selected" value="">{L_FONT_COLOR}</option>
<option style="background-color:chocolate" value="chocolate">chocolate</option>
<option style="background-color:sandybrown" value="sandybrown">sandybrown</option>
<option style="background-color:darkorange" value="darkorange">darkorange</option>
<option style="background-color:orange" value="orange">orange</option>
<option style="background-color:darkgoldenrod" value="darkgoldenrod">darkgoldenrod</option>
<option style="background-color:goldenrod" value="goldenrod">goldenrod</option>
<option style="background-color:gold" value="gold">gold</option>
<option style="background-color:olive" value="olive">olive</option>
<option style="background-color:yellow" value="yellow">yellow</option>
<option style="background-color:yellowgreen" value="yellowgreen">yellowgreen</option>
<option style="background-color:greenyellow" value="greenyellow">greenyellow</option>
<option style="background-color:chartreuse" value="chartreuse">chartreuse</option>
<option style="background-color:green" value="green">green</option>
<option style="background-color:lime" value="lime">lime</option>
<option style="background-color:limegreen" value="limegreen">limegreen</option>
<option style="background-color:springgreen" value="springgreen">springgreen</option>
<option style="background-color:turquoise" value="turquoise">turquoise</option>
<option style="background-color:lightseagreen" value="lightseagreen">lightseagreen</option>
<option style="background-color:mediumturquoise" value="mediumturquoise">mediumturquoise</option>
<option style="background-color:teal" value="teal">teal</option>
<option style="background-color:darkcyan" value="darkcyan">darkcyan</option>
<option style="background-color:cyan" value="cyan">cyan</option>
<option style="background-color:darkturquoise" value="darkturquoise">darkturquoise</option>
<option style="background-color:deepskyblue" value="deepskyblue">deepskyblue</option>
<option style="background-color:dodgerblue" value="dodgerblue">dodgerblue</option>
<option style="background-color:royalblue" value="royalblue">royalblue</option>
<option style="background-color:navy" value="navy">navy</option>
<option style="background-color:darkblue" value="darkblue">darkblue</option>
<option style="background-color:mediumblue" value="mediumblue">mediumblue</option>
<option style="background-color:blue" value="blue">blue</option>
<option style="background-color:blueviolet" value="blueviolet">blueviolet</option>
<option style="background-color:purple" value="purple">purple</option>
<option style="background-color:darkmagenta" value="darkmagenta">darkmagenta</option>
<option style="background-color:magenta" value="magenta">magenta</option>
<option style="background-color:mediumvioletred" value="mediumvioletred">mediumvioletred</option>
<option style="background-color:deeppink" value="deeppink">deeppink</option>
<option style="background-color:hotpink" value="hotpink">hotpink</option>
<option style="background-color:crimson" value="crimson">crimson</option>
<option style="background-color:brown" value="brown">brown</option>
<option style="background-color:indianred" value="indianred">indianred</option>
<option style="background-color:rosybrown" value="rosybrown">rosybrown</option>
<option style="background-color:lightcoral" value="lightcoral">lightcoral</option>
<option style="background-color:lightsalmon" value="lightsalmon">lightsalmon</option>
<option style="background-color:sienna" value="sienna">sienna</option>
<option style="background-color:saddlebrown" value="saddlebrown">saddlebrown</option>
<option style="background-color:peachpuff" value="peachpuff">peachpuff</option>
<option style="background-color:peru" value="peru">peru</option>
<option style="background-color:burlywood" value="burlywood">burlywood</option>
<option style="background-color:tan" value="tan">tan</option>
<option style="background-color:khaki" value="khaki">khaki</option>
<option style="background-color:darkkhaki" value="darkkhaki">darkkhaki</option>
<option style="background-color:olivedrab" value="olivedrab">olivedrab</option>
<option style="background-color:darkolivegreen" value="darkolivegreen">darkolivegreen</option>
<option style="background-color:darkseagreen" value="darkseagreen">darkseagreen</option>
<option style="background-color:darkgreen" value="darkgreen">darkgreen</option>
<option style="background-color:forestgreen" value="forestgreen">forestgreen</option>
<option style="background-color:lightgreen" value="lightgreen">lightgreen</option>
<option style="background-color:seagreen" value="seagreen">seagreen</option>
<option style="background-color:mediumseagreen" value="mediumseagreen">mediumseagreen</option>
<option style="background-color:mediumaquamarine" value="mediumaquamarine">mediumaquamarine</option>
<option style="background-color:aquamarine" value="aquamarine">aquamarine</option>
<option style="background-color:darkslategray" value="darkslategray">darkslategray</option>
<option style="background-color:paleturquoise" value="paleturquoise">paleturquoise</option>
<option style="background-color:cadetblue" value="cadetblue">cadetblue</option>
<option style="background-color:lightblue" value="lightblue">lightblue</option>
<option style="background-color:lightskyblue" value="lightskyblue">lightskyblue</option>
<option style="background-color:steelblue" value="steelblue">steelblue</option>
<option style="background-color:cornflowerblue" value="cornflowerblue">cornflowerblue</option>
<option style="background-color:midnightblue" value="midnightblue">midnightblue</option>
<option style="background-color:slateblue" value="slateblue">slateblue</option>
<option style="background-color:darkslateblue" value="darkslateblue">darkslateblue</option>
<option style="background-color:mediumslateblue" value="mediumslateblue">mediumslateblue</option>
<option style="background-color:mediumpurple" value="mediumpurple">mediumpurple</option>
<option style="background-color:indigo" value="indigo">indigo</option>
<option style="background-color:mediumorchid" value="mediumorchid">mediumorchid</option>
<option style="background-color:plum" value="plum">plum</option>
<option style="background-color:violet" value="violet">violet</option>
<option style="background-color:orchid" value="orchid">orchid</option>
<option style="background-color:palevioletred" value="palevioletred">palevioletred</option>
<option style="background-color:pink" value="pink">pink</option>
<option style="background-color:black" value="black">black</option>
<option style="background-color:dimgray" value="dimgray">dimgray</option>
<option style="background-color:gray" value="gray">gray</option>
<option style="background-color:darkgray" value="darkgray">darkgray</option>
<option style="background-color:silver" value="silver">silver</option>
<option style="background-color:lightgray" value="lightgray">lightgray</option>
<option style="background-color:white" value="white">white</option>
</select>

<!-- /removed-by-bb-button3/4seven-2008/
<input type="button" class="button2" id="bbpalette" id="bbpalette" value="{L_FONT_COLOR}" onclick="change_palette();" title="{L_BBCODE_S_HELP}" />
/removed-by-bb-button3/4seven-2008/-->

</td>
</tr>
<tr>
<td class="tdbgbox">

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/center.gif" alt="{L_BBCODE_IMGALT_CENTER}" id="center" onclick="bbstyle(22)"
onmouseover="helpline('center')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/justify.gif" alt="{L_BBCODE_IMGALT_JUSTIFY}" id="justify" onclick="bbstyle(68)"
onmouseover="helpline('justify')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/right.gif" alt="{L_BBCODE_IMGALT_RIGHT}" id="right" onclick="bbstyle(24)"
onmouseover="helpline('right')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/collumn.gif" alt="{L_BBCODE_IMGALT_COLLUMN}" id="col" onclick="bbstyle(104)"
onmouseover="helpline('col')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/indent.gif" alt="{L_BBCODE_IMGALT_INDENT}" id="indent" onclick="bbstyle(106)"
onmouseover="helpline('indent')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/outdent.gif" alt="{L_BBCODE_IMGALT_OUTDENT}" id="outdent" onclick="bbstyle(108)"
onmouseover="helpline('outdent')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/hr.gif" alt="{L_BBCODE_IMGALT_HR}" id="hr" onclick="bbstyle(74)"
onmouseover="helpline('hr')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/bold.gif" alt="{L_BBCODE_IMGALT_B}" id="bold" onclick="bbstyle(0)"
onmouseover="helpline('b')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/italic.gif" alt="{L_BBCODE_IMGALT_I}" id="italic" onclick="bbstyle(2)"
onmouseover="helpline('i')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/under.gif" alt="{L_BBCODE_IMGALT_U}" id="under" onclick="bbstyle(4)"
onmouseover="helpline('u')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/strike.gif" alt="{L_BBCODE_IMGALT_STRIKE}" id="strike" onclick="bbstyle(66)"
onmouseover="helpline('strike')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/sup.gif" alt="{L_BBCODE_IMGALT_SUP}" id="sup" onclick="bbstyle(54)"
onmouseover="helpline('sup')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/sub.gif" alt="{L_BBCODE_IMGALT_SUB}" id="sub" onclick="bbstyle(56)"
onmouseover="helpline('sub')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/list.gif" alt="{L_BBCODE_IMGALT_LIST}" id="list" onclick="bbstyle(10)"
onmouseover="helpline('l')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/list_ord.gif" alt="{L_BBCODE_IMGALT_LISTORDER}" id="list_ord" onclick="bbstyle(12)"
onmouseover="helpline('o')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/list_point.gif" alt="{L_BBCODE_IMGALT_LISTPOINT}" id="list_point" onclick="bbstyle(-1)"
onmouseover="helpline('e')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/marqd.gif" alt="{L_BBCODE_IMGALT_MARQD}" id="marqd" onclick="bbstyle(58)"
onmouseover="helpline('marqd')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/marqu.gif" alt="{L_BBCODE_IMGALT_MARQU}" id="marqu" onclick="bbstyle(60)"
onmouseover="helpline('marqu')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/marql.gif" alt="{L_BBCODE_IMGALT_MARQL}" id="marql" onclick="bbstyle(62)"
onmouseover="helpline('marql')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/marqr.gif" alt="{L_BBCODE_IMGALT_MARQR}" id="marqr" onclick="bbstyle(64)"
onmouseover="helpline('marqr')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/table.gif" alt="{L_BBCODE_IMGALT_TABLE}" id="table"
onclick="var kleinesfenster = window.open('tablemaker/tablemaker.php', '_blank', 'width=500,height=430, left=0,top=0, resizable=no,status=no,menubar=no, location=no,scrollbars=no,toolbar=no')"
onmouseover="helpline('table')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/spoil.gif" alt="{L_BBCODE_IMGALT_SPOILER}" id="spoil" onclick="bbstyle(26)"
onmouseover="helpline('spoil')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/ot.gif" alt="{L_BBCODE_IMGALT_OT}" id="ot" onclick="bbstyle(94)"
onmouseover="helpline('ot')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/warning.gif" alt="{L_BBCODE_IMGALT_WARNING}" id="warning" onclick="bbstyle(102)"
onmouseover="helpline('warning')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/copyright.gif" alt="{L_BBCODE_IMGALT_COPYRIGHT}" id="copyright" onclick="bbstyle(132)"
onmouseover="helpline('copyright')" onmouseout="helpline('tip')" /></a></div>

<!-- IF S_BBCODE_QUOTE -->
<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/quote.gif" alt="{L_BBCODE_IMGALT_QUOTE}" id="quote" onclick="bbstyle(6)"
onmouseover="helpline('q')" onmouseout="helpline('tip')" /></a></div>
<!-- ENDIF -->

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/code.gif" alt="{L_BBCODE_IMGALT_CODE}" id="code" onclick="bbstyle(8)"
onmouseover="helpline('c')" onmouseout="helpline('tip')" /></a></div>



</td>
</tr>

<tr>
<td class="tdbgbox">

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/search.gif" alt="{L_BBCODE_IMGALT_SEARCH}" id="searchlink" onclick="bbstyle(96)"
onmouseover="helpline('searchlink')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/userprofil.gif" alt="{L_BBCODE_IMGALT_USER}" id="user" onclick="bbstyle(128)"
onmouseover="helpline('user')" onmouseout="helpline('tip')" /></a></div>

<!-- IF S_LINKS_ALLOWED -->
<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/url.gif" alt="{L_BBCODE_IMGALT_URL}" id="url" onclick="bbstyle(16)"
onmouseover="helpline('w')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/ebay.gif" alt="{L_BBCODE_IMGALT_EBAYLINK}" id="ebaylink" onclick="bbstyle(92)"
onmouseover="helpline('ebaylink')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/wiki.gif" alt="{L_BBCODE_IMGALT_WIKI}" id="wiki" onclick="bbstyle(98)"
onmouseover="helpline('wiki')" onmouseout="helpline('tip')" /></a></div>
<!-- ENDIF -->

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/mail.gif" alt="{L_BBCODE_IMGALT_EMAIL}" id="mail" onclick="bbstyle(76)"
onmouseover="helpline('mail')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/web_thumb.gif" alt="{L_BBCODE_IMGALT_WEBTHUMB}" id="web_thumb" onclick="bbstyle(130)"
onmouseover="helpline('web_thumb')" onmouseout="helpline('tip')" /></a></div>

<!-- IF S_BBCODE_IMG -->
<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/img.gif" alt="{L_BBCODE_IMGALT_IMG}" id="img" onclick="bbstyle(14)"
onmouseover="helpline('p')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>
<!-- ENDIF -->

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/textflow_l.gif" alt="{L_BBCODE_IMGALT_TEXTFLOWL}" id="textl" onclick="bbstyle(30)"
onmouseover="helpline('textflow_l')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/textflow_r.gif" alt="{L_BBCODE_IMGALT_TEXTFLOWR}" id="textr" onclick="bbstyle(34)"
onmouseover="helpline('textflow_r')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/textflow_break.gif" alt="{L_BBCODE_IMGALT_TEXTFLOWBREAK}" id="textbr" onclick="bbstyle(36)"
onmouseover="helpline('textflow_break')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/slide.gif" alt="{L_BBCODE_IMGALT_SLIDE}" id="slide" onclick="bbstyle(120)"
onmouseover="helpline('slide')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/photobucket.gif" alt="{L_BBCODE_IMGALT_PBSLIDE}" id="pbslide" onclick="bbstyle(122)"
onmouseover="helpline('pbslide')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/flickr.gif" alt="{L_BBCODE_IMGALT_FLICKR}" id="flickr" onclick="bbstyle(124)"
onmouseover="helpline('flickr')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/picasa.gif" alt="{L_BBCODE_IMGALT_PICASA}" id="picasa" onclick="bbstyle(126)"
onmouseover="helpline('picasa')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/stream.gif" alt="{L_BBCODE_IMGALT_STREAM}" id="stream" onclick="bbstyle(50)"
onmouseover="helpline('stream')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/soundcloud.gif" alt="{L_BBCODE_IMGALT_SOUNDCLOUD}" id="soundcloud" onclick="bbstyle(118)"
onmouseover="helpline('soundcloud')" onmouseout="helpline('tip')" /></a></div>


<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/gallery.gif" alt="{L_BBCODE_IMGALT_GALLERY}" id="gallery" onclick="bbstyle(136)"
onmouseover="helpline('gallery')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/progress_1.gif" alt="{L_BBCODE_IMGALT_PROGRESS}" id="progress" onclick="bbstyle(138)"
onmouseover="helpline('progress')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/smilie.gif" alt="{L_BBCODE_IMGALT_SMILIE}" id="progress" onclick="bbstyle(140)"
onmouseover="helpline('smilie')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/locked.gif" alt="{L_BBCODE_IMGALT_PASS}" id="pass" onclick="bbstyle(142)"
onmouseover="helpline('pass')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/quotas.gif" alt="{L_BBCODE_IMGALT_PIECHART}" id="piechart" onclick="bbstyle(144)"
onmouseover="helpline('piechart')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/paypal_2.gif" alt="{L_BBCODE_IMGALT_PAYPAL}" id="paypal" onclick="bbstyle(146)"
onmouseover="helpline('paypal')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/flag.gif" alt="{L_BBCODE_IMGALT_FLAG}" id="flag" onclick="bbstyle(148)"
onmouseover="helpline('flag')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/download.gif" alt="{L_BBCODE_IMGALT_DOWNLOAD}" id="download" onclick="bbstyle(150)"
onmouseover="helpline('flag')" onmouseout="helpline('tip')" /></a></div>

</td>
</tr>

<tr>
<td class="tdbgbox">

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/flv.gif" alt="{L_BBCODE_IMGALT_FLV}" id="flv" onclick="bbstyle(48)"
onmouseover="helpline('flv')" onmouseout="helpline('tip')" /></a></div>

<!-- IF S_BBCODE_FLASH -->
<!-- <input type="button" class="btnbbcode" accesskey="d" id="addbbcode18" value="Flash" onclick="bbstyle(18)" onmouseover="helpline('d')" onmouseout="helpline('tip')" /> -->
<!-- <img src="{T_IMAGESET_PATH}/buttons/flash.gif" alt="" accesskey="d" id="addbbcode18" value="Flash" onclick="bbstyle(18)" onmouseover="helpline('d')" onmouseout="helpline('tip')"> -->
<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/flash.gif" alt="{L_BBCODE_IMGALT_FLASH}" id="flash" onclick="bbstyle(32)"
onmouseover="helpline('flash_i')" onmouseout="helpline('tip')" /></a></div>
<!-- ENDIF -->

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/divx.gif" alt="{L_BBCODE_IMGALT_DIVX}" id="divx" onclick="bbstyle(100)"
onmouseover="helpline('divx')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/mov.gif" alt="{L_BBCODE_IMGALT_MOV}" id="mov" onclick="bbstyle(52)"
onmouseover="helpline('mov')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/rm.gif" alt="{L_BBCODE_IMGALT_RM}" id="rm" onclick="bbstyle(70)"
onmouseover="helpline('rm')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/wmv.gif" alt="{L_BBCODE_IMGALT_WMV}" id="wmv" onclick="bbstyle(72)"
onmouseover="helpline('wmv')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><img src="{T_IMAGESET_PATH}/buttons/dots.gif" alt="" width="3" height="19" /></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/youtube.gif" alt="{L_BBCODE_IMGALT_YOUTUBE}" id="youtube" onclick="bbstyle(38)"
onmouseover="helpline('youtube')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/googlevid.gif" alt="{L_BBCODE_IMGALT_GVIDEO}" id="googlevid" onclick="bbstyle(40)"
onmouseover="helpline('gvideo')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/myspace.gif" alt="{L_BBCODE_IMGALT_MYSPACE}" id="myspace" onclick="bbstyle(42)"
onmouseover="helpline('myspace')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/myvideo.gif" alt="{L_BBCODE_IMGALT_MYVIDEO}" id="myvideo" onclick="bbstyle(44)"
onmouseover="helpline('myvideo')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/clipfish.gif" alt="{L_BBCODE_IMGALT_CLIPFISH}" id="clipfish" onclick="bbstyle(46)"
onmouseover="helpline('clipfish')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/dailymotion.gif" alt="{L_BBCODE_IMGALT_DAILYMOTION}" id="dailymotion" onclick="bbstyle(78)"
onmouseover="helpline('dailymotion')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/megavideo.gif" alt="{L_BBCODE_IMGALT_MEGAVIDEO}" id="megavideo" onclick="bbstyle(110)"
onmouseover="helpline('megavideo')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/metacafe.gif" alt="{L_BBCODE_IMGALT_METACAFE}" id="metacafe" onclick="bbstyle(112)"
onmouseover="helpline('metacafe')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/veoh.gif" alt="{L_BBCODE_IMGALT_VEOH}" id="veoh" onclick="bbstyle(114)"
onmouseover="helpline('veoh')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/vimeo.gif" alt="{L_BBCODE_IMGALT_VIMEO}" id="vimeo" onclick="bbstyle(116)"
onmouseover="helpline('vimeo')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/streetfire.gif" alt="{L_BBCODE_IMGALT_STREETFIRE}" id="streetfire" onclick="bbstyle(88)"
onmouseover="helpline('streetfire')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/gamespot.gif" alt="{L_BBCODE_IMGALT_GAMESPOT}" id="gamespot" onclick="bbstyle(80)"
onmouseover="helpline('gamespot')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/gametrailers.gif" alt="{L_BBCODE_IMGALT_GAMETRAILERS}" id="gametrailers" onclick="bbstyle(82)"
onmouseover="helpline('gametrailers')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/gotgame.gif" alt="{L_BBCODE_IMGALT_GOTGAME}" id="gotgame" onclick="bbstyle(84)"
onmouseover="helpline('gotgame')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/gamevideos.gif" alt="{L_BBCODE_IMGALT_GAMEVIDEOS}" id="gamevideos" onclick="bbstyle(86)"
onmouseover="helpline('gamevideos')" onmouseout="helpline('tip')" /></a></div>

<div class="bb-button"><a><img src="{T_IMAGESET_PATH}/buttons/xfire.gif" alt="{L_BBCODE_IMGALT_XFIRE}" id="xfire" onclick="bbstyle(90)"
onmouseover="helpline('xfire')" onmouseout="helpline('tip')" /></a></div>

</td>
</tr>
<!-- IF S_BBCODE_ALLOWED and .custom_tags -->

<tr>
<td class="tdcustombox">
<!-- BEGIN custom_tags -->
<img src="{T_IMAGESET_PATH}/buttons/spacer.gif" alt="" width="4" height="14" />
<input type="button" class="button2" id="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})"
<!-- IF custom_tags.BBCODE_HELPLINE !== '' -->
onmouseover="helpline('cb_{custom_tags.BBCODE_ID}')" onmouseout="helpline('tip')" />
<!-- ENDIF -->
<!-- END custom_tags -->
</td>
</tr>
<!-- ENDIF -->

<tr>
<td class="tdbgtickerbox">
<input type="text" readonly="readonly" id="helpbox" class="tdbgticker helpline" value="{L_STYLES_TIP}" />
</td>
</tr>
</table>
</div>
<!-- ENDIF -->
[/code]
Meine Umgebungsdaten: PHP 4.4.1 | MYSQL 4.0.15 | phpBB3 Version 3.0.5 | Style: Pro-Silver
Test Account Daten: http://www.treffpunkt-boscheln.de | User: qwert | PW: qwert123
Hier die Liste der installierten Mod's
hackepeter13
Valued Contributor
Beiträge: 3566
Registriert: 21.04.2004 12:22
Wohnort: Berlin
Kontaktdaten:

Re: BB Code Box 3 Version 1.0.9 ( Expanded Version)

Beitrag von hackepeter13 »

oecherjung hat geschrieben:NACHTRAG

DER BOM TEST

hat folgendes ergeben:

PHP und HTML Dateien mit UTF-8 BOM
./language/de_x_sie/mods/006.1x_lang_bbcodebox3.php
./chat/lib/lang/es.php
./chat/lib/lang/ka.php
./chat/lib/lang/kr.php
./chat/lib/lang/sl.php

Anzahl der Dateien mit UTF-8 BOM: 5



Also alles Dateien die nicht im Einsatz sind.
Du hast bei der UTF-8 BOM sache was wohl falsch verstanden.

Die Dateien müssen ohne BOM und nicht mit BOM gespeichert werden.
Schau dir mal deinen Umlaute in der Sprachdatei an. ;-)

So nun nochmal zu einigen Fehlern die ich auf die Schnelle gesehen habe:

1. Wenn in der posting_buttons.html folgendes steht:

Code: Alles auswählen

         ,piechart: '{LA_BBCODE_PIECHART_HELP}'
         ,paypal: '{LA_BBCODE_PAYPAL_HELP}'
dann sollte in der Sprachdatei nicht das:

Code: Alles auswählen

    'BBCODE_PIECHART'           => '[piechart]Data,Labels[/piechart] Daten and Namen werden durch * getrennt',
    'BBCODE_PAYPAL'          => '[spaypal=Meine.Mail@Adr.de,EUR,12.99]Verwendungszweck[/spaypal]',
sondern das:

Code: Alles auswählen

    'BBCODE_PIECHART_HELP'           => '[piechart]Data,Labels[/piechart] Daten and Namen werden durch * getrennt',
    'BBCODE_PAYPAL_HELP'          => '[spaypal=Meine.Mail@Adr.de,EUR,12.99]Verwendungszweck[/spaypal]',
drin stehen.

2. Fehlen in deiner zu letzt geposteten Sprachdatei einige Standard-Zeilen für z.B. Userprofil, Copyright, usw.

Vergleiche also die vom aktuellem Packet (Version 1.0.9) an und füge fehlende Zeilen in deiner ein!

3. Warum hast du dieses verändert:

Code: Alles auswählen

   'BBCODE_IMGALT_VIMEO_HELP'    => 'Video von Vimeo.com einfügen.',
Richtig wäre:

Code: Alles auswählen

   'BBCODE_IMGALT_VIMEO'    => 'Video von Vimeo.com einfügen.',

Fazit:

Das einfachste wäre, wenn du die originale Sprachdatei aus dem aktuellem Packet nimmst und die Zeilen für deine Custom-Buttons nochmals manuell einfügst, ohne dabei die bestehenden Zeilen zu verändern!!!
:roll:
oecherjung
Mitglied
Beiträge: 303
Registriert: 26.06.2009 08:12
Wohnort: Heinsberg
Kontaktdaten:

Re: BB Code Box 3 Version 1.0.9 ( Expanded Version)

Beitrag von oecherjung »

Hallo Hackepeter,

nach dem ich alle deine Ratschläge befolgt habe und meine Betriebsblindheit überwunden habe,
bleibt mir nur zu sagen:

DANKE !!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Jetzt gehts es !!!!!

......und nochmals auch Danke für deine Gedult !!!

Gru´ß

oechi
Meine Umgebungsdaten: PHP 4.4.1 | MYSQL 4.0.15 | phpBB3 Version 3.0.5 | Style: Pro-Silver
Test Account Daten: http://www.treffpunkt-boscheln.de | User: qwert | PW: qwert123
Hier die Liste der installierten Mod's
Antworten

Zurück zu „[3.0.x] Mod Support“