poniedziałek, 8 września 2014

[Poradnik] Phpbb by przemo - jak zwiększyć długość nazwy tematu

#
#-----[ SQL ]------------------------------------------
#
ALTER TABLE `phpbb_topics` CHANGE `topic_title` `topic_title` CHAR( 255 ) NOT NULL;
ALTER TABLE `phpbb_posts_text` CHANGE `post_subject` `post_subject` CHAR( 255 ) NOT NULL;

#
#-----[ OPEN ]-----------------------------------------
#
templates/*/posting_body.tpl

#
#-----[ FIND ]-----------------------------------------
#
<input type="text" name="subject" size="45" maxlength="60" style="width:550px" tabindex="2" class="post" onFocus="Active(this)" onBlur="NotActive(this)" value="{SUBJECT}" />

#
#-----[ REPLACE WITH ]----------------------------------
#
<input type="text" name="subject" size="45" maxlength="255" style="width:550px" tabindex="2" class="post" onFocus="Active(this)" onBlur="NotActive(this)" value="{SUBJECT}" />

#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------
#

Brak komentarzy:

Prześlij komentarz