[OUTDATED] CUSTOMIZATION - How To Increase Topic Title Length
Good morning and mery xmas
I am running Icy Phoenix 1.2.0.27c and I notice that the title topic is 35 characters maximun
Can I increase it to 100 characters?
Second edit ( ~~ novice programmer on both ~~ ):
Solution by
raphael10 (Copied from post below):
From the
italian IP forum:
1.
First of all: backup your database!
2.
In Mysql database issue the following command:
query SQL: ALTER TABLE `ip_topics` CHANGE `topic_title` `topic_title` VARCHAR(100) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL
3.
OPEN
posting_body.tpl
FIND
<td class="row2" width="78%"><input type="text" name="subject" size="45" maxlength="60" style="width:98%" tabindex="2" class="post" value="{SUBJECT}" {S_AJAX_BLUR} /></td>
CHANGE
with the number you have put in
VARCHAR (100 in this example)
Edited by
novice programmer, Tue 30 Dec, 2008 00:04: Fixed title + structures + spelling to suit into the docs.
Edited by
novice programmer, Tue 30 Dec, 2008 00:07: Added solution.