Verfasst: 04.01.2005 15:47
-phill- einmal reicht 

Code: Alles auswählen
##############################################################
## MOD Title: Smilie Creator
## MOD Author: esperitox < bockelmann@powerforum.de > ( Marcel Bockelmann ) http://www.powerforum.de/
## BBCode collecting main: saerdnaer
## MOD Description: Diese Mod fügt einen BBCode [schild=1]text[/schild] hinzu der es den Usern
## erlaubt Schilder-Smilies mit eigenem Text in ihre Postings einzufügen.
## MOD Version: 1.0.3
##
## Installation Level: moderate
## Installation Time: 5-10 minutes
## Files To Edit: posting.php, privmsg.php, bbcode.php, lang_main.php, posting_body.tpl, bbcode.tpl
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
Chainat hat geschrieben:Falls du phpBB 2.0.10 oder 2.0.11 hast:
oeffne smilie_creator.php
Suche nach:
------------------------------------------------------------Code: Alles auswählen
if($mode == "text2schild")
Davor einfuegen:
------------------------------------------------------------Code: Alles auswählen
$mode=(isset($_GET['mode']))?$_GET['mode']:$_POST['mode'];
------------------------------------------------------------
------------------------------------------------------------
------------------------------------------------------------
Suche nach:
------------------------------------------------------------Code: Alles auswählen
'L_SELECT_FORUM' => $lang['Select_forum'],
Danach einfuegen:
-----------------------------------------------------------Code: Alles auswählen
'L_NOTEXT_ERROR' => $lang['SC_notext_error'], 'L_ANOTHER_SHIELD' => $lang['SC_another_shield'],
------------------------------------------------------------
------------------------------------------------------------
------------------------------------------------------------
So funktioniert der Smiliecreator auch mit 2.010 und 2.0.11
Chainat