Verfasst: 06.09.2003 22:50
damit wird die zeichenlänge erhöht
*edit* auf dem screenshot kann ich nirgends Admini erkennen.. nur Administrator

probier das mal. dann klappt das auchich hat geschrieben:dann ist das alles zu lang. du müsstest die veränderungen machen, die ich auf der ersten seite gepostet habe.
Code: Alles auswählen
#################################################################
## Mod Title: Extended Ranks
## Mod Version: 1.0 Final
## Author: Hålo <halo@toxic-productions.tk>
## Description: This mod will allow you to have 255 characters instead of the standard 40,
## allowing for ranks with mutliple <font> tags, <b>, <u>, <i>, whatever.
##
## Installation Level: Beginner(Easy)
## Installation Time: 2 Minutes
## Files To Edit: rank_edit_body.tpl, your MySQL database
## Included Files: (n/a)
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
##
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ Run MySQL Query ]------------------------------
#
**NOTE** Replace the "phpbb_" prefix if you use a different one
ALTER TABLE phpbb_ranks MODIFY COLUMN rank_title varchar(255) NOT NULL
#
#-----[ Open ]------------------------------------------
#
/phpBB2/templates/subSilver/admin/rank_edit_body.tpl
#
#-----[ Find ]------------------------------------------
#
<tr>
<td class="row1" width="38%"><span class="gen">{L_RANK_TITLE}:</span></td>
<td class="row2"><input type="text" name="title" size="35" maxlength="40" value="{RANK}" /></td>
</tr>
#
#-----[ Replace With ]------------------------------------------
#
<tr>
<td class="row1" width="38%"><span class="gen">{L_RANK_TITLE}:</span></td>
<td class="row2"><input type="text" name="title" size="35" maxlength="255" value="{RANK}" /></td>
</tr>
#
#-----[ Save/Upload ]------------------------------------------
Die Änderungen habe ich gemacht
Code: Alles auswählen
<font color="#00FF00">Administrator</font>
Code: Alles auswählen
<span style="font-weight:bold; color:#00FF00">Administrator</span>
Code: Alles auswählen
<font size="10" color="#00FF00"><b>Administrator</b></font>