Script-solution.de » Community » Support-Board » Foren » Boardsolution » Boardsolution v1.2x und älter » Mod-Anleitungen » You-tube tag
  • Willkommen, Gast!
  • Freitag, 10. Februar 2012, 05:00:02
 
Thema: "You-tube tag" [ Seite 1 ]

Kein neuer Beitrag glente , 19.12.2006, 12:51
Beitrag #1   

IP: n/a
Rang: * * * O O O O
Registrierung: 14.04.2006, 23:30
 

Fortgeschritten mit 104 Punkte, 50 Beiträge
I have made this BB-tag in the config file (I don't know much about BB-tags...):

'youtube' => array(
'tag' => 'youtube',
'type' => 'inline',
'content' => 'movie',
'replacement' => '<object width="425" height="350"><param name="movie"
value="http://www.youtube.com/v/<!--TEXT-->"></param><param name="wmode"
value="transparent"></param><embed src="http://www.youtube.com/v/<!--TEXT-->"
type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>',
'param' => 'no',
'allow_nesting' => false,
'allowed_content' => array(
'inline' => true
),
'bbcode_bar' => array(
'type' => 'button',
'style' => ' style="width: 80px;"',
'access_key' => 'y'
),
'prompt_text' => 'prompt_youtube',
),


This actually works with Youtube movies, but when people want to write a new message, they get the
following error message (which apparantly does not make any difference):

Undefined index: bbcode_help_youtube | Call-trace:

/home/studklub/www/forum/src/function_postings.php in line 1206 [ Function: bs_get_bbcode_button() ]
/home/studklub/www/forum/src/function_postings.php in line 1149 [ Function: bs_get_bbcode_button() ]
/home/studklub/www/forum/src/function_postings.php in line 490 [ Function: bs_get_bbcode_for_post() ]
/home/studklub/www/forum/modules/new_topic.php in line 55 [ Function: bs_show_post_form() ]
/home/studklub/www/forum/index.php in line 224 [ Method: bs_module_new_topic::run() ]

Undefined index: bbcode_prompt_youtube | Call-trace:

/home/studklub/www/forum/src/function_postings.php in line 1157 [ Function:
bs_get_bbcode_for_post() ]
/home/studklub/www/forum/src/function_postings.php in line 490 [ Function: bs_get_bbcode_for_post() ]
/home/studklub/www/forum/modules/new_topic.php in line 55 [ Function: bs_show_post_form() ]
/home/studklub/www/forum/index.php in line 224 [ Method: bs_module_new_topic::run() ]


What do I need to change?

thanks you!

 
Kein neuer Beitrag Nils , 19.12.2006, 13:42
Beitrag #2   

IP: n/a
Rang: * * * * * * *
Registrierung: 01.07.2003, 18:55
Homepage: http://www.script-solution.de
Wohnort: Marburg
 

Forum-Gott mit 7594 Punkte, 7360 Beiträge
Hi,


you have to add the entries $LANG['bbcode_help_youtube'] and $LANG['bbcode_prompt_youtube'] to the
language-file language/<lang>/lang_index.php. The other ones are at the bottom of this file.
Probably it makes sense to take a look at them :)

greetings
Nils

 
Kein neuer Beitrag glente , 21.12.2006, 01:01
Beitrag #3   

IP: n/a
Rang: * * * O O O O
Registrierung: 14.04.2006, 23:30
 

Fortgeschritten mit 104 Punkte, 50 Beiträge
thank you! that did the trick :D

 
Kein neuer Beitrag herzdrache , 30.12.2006, 12:14
Beitrag #4   

IP: n/a
Rang: * * * * * * O
Registrierung: 24.01.2005, 21:59
Homepage: http://forum.paintball-dw.at
Wohnort: Wien
 

Forum-Beherrscher mit 551 Punkte, 407 Beiträge
hallo nils!

hab das bei mir auch mal eingefügt, und hat perfekt funktioniert. Dann hat mich ein User
angesprochen, und gemeint, ob das auch mit myvideo.de geht.

naja nix leichter als das dachte ich mir, und hab dann folgenden Code in die Config nach dem
YouTube Tag einfgefügt:

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'myvideo' => array(
      'tag' => 'myvideo',
      'type' => 'inline',
      'content' => 'movie',
      'replacement' => '<object width="470" height="406"><param name="movie" value="http://www.myvideo.de/movie/<!--TEXT-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.myvideo.de/movie/<!--TEXT-->"type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>',
      'param' => 'no',
      'allow_nesting' => false,
      'allowed_content' => array(
      'inline' => true
      ),
      'bbcode_bar' => array(
         'type' => 'button',
         'style' => ' style="width: 80px;"',
         'access_key' => 'my'
      ),
      'prompt_text' => 'prompt_myvideo',
   ),


und folgende Codes in die Languagefiles (/language/lang_index.php):

Code:
1
2
$LANG['bbcode_help_myvideo'] = '[MYVIDEO]Name bzw. Bezeichnung des MyVideo.de Videos --> steht NACH dem watch/ [/MYVIDEO]';
$LANG['bbcode_prompt_myvideo'] = 'Bitte gib hier NUR den "Videonamen" NACH dem .../watch/ ein';


interessanter weise funktioniert der Code, nur auf einmal gehen keine bbcode buttons mehr auf. d.h.
wenn ich auf einen Button klicke tut sich einfach nix :-(
Wenn ich den Code händisch eingebe funkts aber mit den Videos!

bitte um kurze Unterstützung!

Danke im Voraus!

lg herzdrache

if { ( $ahnung == 'keine' ) { lies ( FAQ ) && ( Suchen ) }
return $result

if { ($result == '0' ) {post->frage@nils } }

else { post->what you want } }

 
Kein neuer Beitrag Nils , 30.12.2006, 13:11
Beitrag #5   

IP: n/a
Rang: * * * * * * *
Registrierung: 01.07.2003, 18:55
Homepage: http://www.script-solution.de
Wohnort: Marburg
 

Forum-Gott mit 7594 Punkte, 7360 Beiträge
Hallo,

habe gerade mal bei dir geguckt, aber leider hast du es wohl wieder rausgenommen.
Könntest du das nochmal reinpacken, damit ich schauen kann was das Problem ist?

mfg Nils

 
Kein neuer Beitrag Nils , 30.12.2006, 13:30
Beitrag #6   

IP: n/a
Rang: * * * * * * *
Registrierung: 01.07.2003, 18:55
Homepage: http://www.script-solution.de
Wohnort: Marburg
 

Forum-Gott mit 7594 Punkte, 7360 Beiträge
Ok, habe nach deiner PM nun im richtigen Forum nachgeschaut :)
Der Grund ist, dass du Anführungszeichen in diesem Prompt-Text benutzt:
Code:
1
BBCODE[14]["prompt_text"] = "Bitte gib hier NUR den "Videonamen" NACH dem .../watch/ ein";

Dadurch wird ein Syntaxfehler im Javascript-Code produziert.
Du müsstest diese escapen, also so:
Code:
1
$LANG[...] = 'Bitte gib hier NUR den \"Videonamen\" NACH dem .../watch/ ein';


mfg Nils

 
Kein neuer Beitrag herzdrache , 30.12.2006, 13:37
Beitrag #7   

IP: n/a
Rang: * * * * * * O
Registrierung: 24.01.2005, 21:59
Homepage: http://forum.paintball-dw.at
Wohnort: Wien
 

Forum-Beherrscher mit 551 Punkte, 407 Beiträge
hallo nils!

super danke funkt - du bist der Beste!!!

lg und guten Rutsch!

herzdrache

if { ( $ahnung == 'keine' ) { lies ( FAQ ) && ( Suchen ) }
return $result

if { ($result == '0' ) {post->frage@nils } }

else { post->what you want } }

 
Kein neuer Beitrag herzdrache , 14.08.2007, 19:07
Beitrag #8   

IP: n/a
Rang: * * * * * * O
Registrierung: 24.01.2005, 21:59
Homepage: http://forum.paintball-dw.at
Wohnort: Wien
 

Forum-Beherrscher mit 551 Punkte, 407 Beiträge
Hi Nils!

hätte mal wieder ein "Attentat"

und zwar wurde ich angesprochen, ob man auch flashvideos von brightcove einfügen kann?!?
hab das mal mit de.sevenload.com veglichen, da das ja auch flash's sind, aber der einzufügende Code
ist komplett unterschiedlich! :-(

könntest du mir vielleicht bitte helfen?!?

hier der einzufügende Code lt. HP (zur orignalsite klick mich!)

Code:
1
2
3
4
5
6
<embed src="http://services.brightcove.com/services/viewer/federated_f8/271548138" bgcolor="#FFFFFF"
flashVars="videoId=1133242147&playerId=271548138&viewerSecureGatewayURL
=https://services.brightcove.com/services/amfgateway&servicesURL=http://services.brightcove.com/services&cdnURL
=http://admin.brightcove.com&domain=embed&autoStart=false&" base="http://admin.brightcove.com" name="flashObj" 
width="510" height="610" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" 
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>


Danke im Voraus!

lg herzdrache

p.s hab den code mit "Enter's" abgeteilt, sonst wäre er ja unmöglich lang!

if { ( $ahnung == 'keine' ) { lies ( FAQ ) && ( Suchen ) }
return $result

if { ($result == '0' ) {post->frage@nils } }

else { post->what you want } }

 
Kein neuer Beitrag Rafioso , 14.08.2007, 21:26
Beitrag #9   

IP: n/a
Rang: * * * * * * *
Registrierung: 30.08.2006, 22:31
Homepage: http://HomepageStarter.de
Wohnort: O-BW
 

Forum-Gott mit 1463 Punkte, 1295 Beiträge
Spracheinträge:

Code:
1
2
$LANG['bbcode_help_flashvideo'] = '[flashvideo]Gebe die Video-ID ein --> steht NACH dem title= [/flashvideo]';
$LANG['bbcode_help_flashvideo'] = '[flashvideo]Gebe die Video-ID ein --> steht NACH dem title= [/flashvideo]';


config\bbcode.php

In die obere Hälfte kommt folgendes:
Code:
1
2
3
4
5
6
7
8
9
10
11
      'flashvideo' => array(
              'tag' => 'flashvideo',
              'type' => 'inline',
              'content' => 'movie',
              'replacement' => '<embed src="http://www.brightcove.com/playerswf" bgcolor="#FFFFFF" flashVars="allowFullScreen=true&initVideoId=<!--TEXT-->&servicesURL=http://www.brightcove.com&viewerSecureGatewayURL=https://www.brightcove.com&cdnURL=http://admin.brightcove.com&autoStart=false" base="http://admin.brightcove.com" name="bcPlayer" width="486" height="412" allowFullScreen="true" allowScriptAccess="always" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>',
              'param' => 'no',
              'allow_nesting' => false,
              'allowed_content' => array(
              'inline' => true
              )
          ),


In die untere Hälfte kommt folgendes:
Code:
1
2
3
4
5
6
7
         'flashvideo' => array(
            'type' => 'image',
            'image' => 'bbcode/flashvideo.png',
            'width' => 20,
            'height' => 20,
            'prompt_text' => 'prompt_flashvideo'
         ),


MfG
Rafioso


 
Kein neuer Beitrag herzdrache , 15.08.2007, 00:26
Beitrag #10   

IP: n/a
Rang: * * * * * * O
Registrierung: 24.01.2005, 21:59
Homepage: http://forum.paintball-dw.at
Wohnort: Wien
 

Forum-Beherrscher mit 551 Punkte, 407 Beiträge
Hi Rafioso!

Danke für deinen Code;
leider hab ich "noch" v1.22!
hab den Code jetzt dahingehend geändert:

für die die es interessiert:

install/user_config.php

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'flashvideo' => array(
                   'tag' => 'flashvideo',
                   'type' => 'inline',
                   'content' => 'movie',
                   'replacement' => '<embed src="http://www.brightcove.com/playerswf" bgcolor="#FFFFFF" flashVars="allowFullScreen=true&initVideoId=<!--TEXT-->&servicesURL=http://www.brightcove.com&viewerSecureGatewayURL=https://www.brightcove.com&cdnURL=http://admin.brightcove.com&autoStart=false" base="http://admin.brightcove.com" name="bcPlayer" width="486" height="412" allowFullScreen="true" allowScriptAccess="always" seamlesstabbing="false" type="application/x-shockwave-flash" swLiveConnect="true" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>',
                   'param' => 'no',
                   'allow_nesting' => false,
                   'allowed_content' => array(
                   'inline' => true
                   
                   ),
             'bbcode_bar' => array(
                   'type' => 'button',
                   'style' => ' style="width: 80px;"',
               'access_key' => 'flash'
                   
                   
                   ),
                   'prompt_text' => 'prompt_flashvideo',
               ),

und in der Languagedatei

Code:
1
2
$LANG['bbcode_help_flashvideo'] = '[flashvideo]Gebe die Video-ID ein --> steht NACH dem bcdit oder videoID= [/flashvideo]';
$LANG['bbcode_prompt_flashvideo'] = 'Gebe die Video-ID ein --> steht NACH dem bctid oder videoId=';


Danke nochmals!
lg Herzdrache

if { ( $ahnung == 'keine' ) { lies ( FAQ ) && ( Suchen ) }
return $result

if { ($result == '0' ) {post->frage@nils } }

else { post->what you want } }

 
Kein neuer Beitrag Rafioso , 15.08.2007, 01:13
Beitrag #11   

IP: n/a
Rang: * * * * * * *
Registrierung: 30.08.2006, 22:31
Homepage: http://HomepageStarter.de
Wohnort: O-BW
 

Forum-Gott mit 1463 Punkte, 1295 Beiträge
Oh, wusste nicht das noch v1.22 hast :/

Aber bitte bitte. :)

 
Kein neuer Beitrag Nils , 15.08.2007, 10:03
Beitrag #12   

IP: n/a
Rang: * * * * * * *
Registrierung: 01.07.2003, 18:55
Homepage: http://www.script-solution.de
Wohnort: Marburg
 

Forum-Gott mit 7594 Punkte, 7360 Beiträge
Noch ein kurzer Hinweis von mir:
Ein bisher nicht definierter Wert (definiert sind: "text", "attachment", "attachment_image",
"code", "url", "list" und "image" ) bei "content" bringt nur dann etwas, wenn man ihn in der
src/bbcode.php verwendet. Ansonsten wird immer "text" benutzt. D.h. in diesem Fall ist es das
gleiche, als wenn "text" dort steht.
Das würde Sinn machen, wenn für die Ersetzung des Tags irgendwas gebraucht wird, was man in der
config/bbcode.php nicht hat. Also wenn du z.B. einen Tag mit SQL-Highlighting einbauen möchtest,
wäre das so ein Fall. Dann müsste man einen neuen Wert für "content" nehmen und in der
src/bbcode.php ganz unten für diesen Wert den entsprechenden Code einbauen, der den Inhalt des Tags
als SQL highlighted.

mfg Nils

Edit: Ich seh gerade, dass "inline" im Tag erlaubt ist ( "allowed_content" ). Das solltest du
lieber rausnehmen. Ist zwar nicht wirklich schlimm, aber ist sicher nicht das was du möchtest. Denn
das bedeutet, dass innerhalb des Tags z.B. [ b ] benutzt werden darf und dann auch ersetzt wird.
Aber der Inhalt soll ja eine ID sein...
Dieser Beitrag wurde insgesamt 1 mal editiert. Das letzte mal 15.08.2007, 10:06 von Nils.

 
Kein neuer Beitrag herzdrache , 15.08.2007, 13:31
Beitrag #13   

IP: n/a
Rang: * * * * * * O
Registrierung: 24.01.2005, 21:59
Homepage: http://forum.paintball-dw.at
Wohnort: Wien
 

Forum-Beherrscher mit 551 Punkte, 407 Beiträge
danke!!

:D

lg herzdrache

if { ( $ahnung == 'keine' ) { lies ( FAQ ) && ( Suchen ) }
return $result

if { ($result == '0' ) {post->frage@nils } }

else { post->what you want } }

 
Kein neuer Beitrag Hendriks_Island , 24.08.2007, 22:16
Beitrag #14   

IP: n/a
Rang: * * * * * O O
Registrierung: 19.09.2004, 02:29
Homepage: http://www.nychenne.com
Wohnort: Fehmarn
 

Supporter mit 438 Punkte, 282 Beiträge
Hi zusammen! :)

Ich habe mal die Codes für Youtube und MyVideo eingebaut.

Im Forum selbst erhalte ich keine Fehlermeldungen, aber im Fehler-Log werden folgende Fehler
ausgegeben:

Code:
1
2
3
4
5
6
7
8
9
10
11
12
Undefined index: bbcode_prompt_myvideo
Anfrage: /board/index.php?action=new_post&fid=6&tid=45&site=1
Backtrace:

    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 616 [get_bbcode_for_post()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 274 [bs_postingform::get_bbcode_for_post()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 381 [bs_postingform::get_textarea()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 215 [bs_postingform::_get_post_form()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/modules/new_post.php, 79 [bs_postingform::get_content()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/page.php, 131 [bs_module_new_post::run()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/page.php, 55 [bs_page::_display_module()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/index.php, 110 [bs_page::bs_page()] 


und

Code:
1
2
3
4
5
6
7
8
9
10
11
12
Undefined index: bbcode_prompt_youtube
Anfrage: /board/index.php?action=new_post&fid=6&tid=45&site=1
Backtrace:

    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 616 [get_bbcode_for_post()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 274 [bs_postingform::get_bbcode_for_post()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 381 [bs_postingform::get_textarea()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/posting_form.php, 215 [bs_postingform::_get_post_form()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/modules/new_post.php, 79 [bs_postingform::get_content()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/page.php, 131 [bs_module_new_post::run()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/src/page.php, 55 [bs_page::_display_module()]
    * /usr/local/pem/vhosts/16697/webspace/httpdocs/board/index.php, 110 [bs_page::bs_page()]


Hat die jemand auch?

Ach ja, ich habe den Code wie folgt drin in der config:

im Bereich $bbcode

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 /*Youtube*/
 'y' => array(
      'tag' => 'y',
      'type' => 'inline',
      'content' => 'movie',
      'replacement' => '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/<!--TEXT-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/<!--TEXT-->" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>',
      'param' => 'no',
      'allow_nesting' => false,
      'allowed_content' => array(
         'inline' => true
          )
      ),
   /*Youtube Ende*/
 /*MYVIDEO*/
 'my' => array(
        'tag' => 'my',
        'type' => 'inline',
        'content' => 'movie',
        'replacement' => '<object width="470" height="406"><param name="movie" value="http://www.myvideo.de/movie/<!--TEXT-->"></param><param name="wmode" value="transparent"></param><embed src="http://www.myvideo.de/movie/<!--TEXT-->"type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>',
        'param' => 'no',
        'allow_nesting' => false,
        'allowed_content' => array(
        'inline' => true
        )
        ),
 /*MYVIDEO Ende*/


und in Bereich $bbcode_bar

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
   /*youtube*/
   'separator',
  'y' => array(
         'type' => 'image',
         'image' => 'bbcode/youtube.png"',
            'width' => 20,
         'height' => 20,
            'prompt_text' => 'prompt_youtube'
  ),
  /*youtube*/
  /*MyVideo*/
    'my' => array(
            'type' => 'image',
            'image' => 'bbcode/myvideo.png"',
            'width' => 20,
         'height' => 20,
            'prompt_text' => 'prompt_myvideo',
  ),
  /*MyVideo*/



*LoL* Fehler gefunden... ich war nur blind... in nenne es in der lang_index my und y also musste
ich es so:

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
   /*youtube*/
   'separator',
  'y' => array(
         'type' => 'image',
         'image' => 'bbcode/youtube.png"',
            'width' => 20,
         'height' => 20,
            'prompt_text' => 'prompt_y'
  ),
  /*youtube*/
  /*MyVideo*/
    'my' => array(
            'type' => 'image',
            'image' => 'bbcode/myvideo.png"',
            'width' => 20,
         'height' => 20,
            'prompt_text' => 'prompt_my',
  ),
  /*MyVideo*/


auch im Code der bbcode.php benennen. :roll:

Greetz

Henne



Provehito in altum - Meine traurigen Augen, sie sind leer und ohne Leben... Vielleicht bin ich
schon dort! - Dort auf der anderen Seite...

NYC-Hennes-Forum | NYC-Hennes-Welt | iPhone Jailbreak-Tutorials | Mein Flickr-Profil

Dieser Beitrag wurde insgesamt 3 mal editiert. Das letzte mal 24.08.2007, 22:54 von Hendriks_Island.

n/a n/a 1     ( Anzeige: 1 - 14 , Gesamt: 14 ) n/a n/a
User in diesem Thema: 0 Registrierte, 0 Versteckte, 1 Gast, 0 Bots
Keine
Thema-Aktionen:

Toggle Ähnliche Themen zu "You-tube tag"
  Antworten Aufrufe Themeneröffnung Letzter Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  Alles gute zum Geburtstag   Seiten 1 2 3 4 ] 47 57158 31.01.2008, 00:21
Von: Rafioso
03.02.2012, 17:28
Von: Nils Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, verschoben
  flow-player mit BBCode Tag einbinden 2 1004 05.12.2011, 22:20
Von: Frost-Fr
06.12.2011, 18:35
Von: Frost-Fr Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, verschoben
  Myvideo/youtube/flash Tag   Seiten 1 2 ] 19 20079 05.11.2009, 23:51
Von: Gangsta
15.04.2011, 22:17
Von: Rafioso Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  E-Mail BBCode-Tag 2 2162 14.04.2011, 17:17
Von: Mars
14.04.2011, 19:49
Von: Mars Zum letzten Beitrag
Keine neuen Beiträge, nicht wichtig Keine neuen Beiträge, kein 'heißes Thema'
Keine neuen Beiträge, offen Keine neuen Beiträge, nicht verschoben
  gültiges Geburtstag 2 4537 21.12.2010, 15:57
Von: Mars
22.12.2010, 11:07
Von: Nils Zum letzten Beitrag
  • 0.169634 Sek., 11 DB-Zugriffe, 6.555 MiB
  • Boardsolution v1.43 | © Nils Asmussen 2003-2009
Valid XHTML and CSS © 2003 - 2009 script-solution.de, Powered by Joomla!