Page 1 of 1

Max length of news article

Posted: 24. April 2010 22:29
by Genopath
Your Portal Version: 1.0.0RC3
Your phpBB Type: Standard phpBB3
MODs installed: No
Your knowledge: Basic Knowledge

What have you done before the problem was there?


What have you already tryed to solve the problem?


Description and Message
Hi guys, is there a way to change this value above 999? In the admin panel it only allow a 3digit integer and if I wanted to change it say to 1500 I can't. Thanks in advance.

Re: Max length of news article

Posted: 24. April 2010 22:38
by Marc
If you want to allow 1500, why don't you just disable that feature?

Re: Max length of news article

Posted: 24. April 2010 23:42
by Genopath
Because I have really big articles around 3000ish.

Re: Max length of news article

Posted: 25. April 2010 00:01
by Marc
Try this:
Open includes/acp/acp_portal.php
Find:

Code: Select all

'portal_news_length'				=> array('lang' => 'PORTAL_NEWS_LENGTH',	'validate' => 'int',		'type' => 'text:3:3',		 'explain' => true),
Replace with:

Code: Select all

'portal_news_length'				=> array('lang' => 'PORTAL_NEWS_LENGTH',	'validate' => 'int',		'type' => 'text:10:200',		 'explain' => true),

Re: Max length of news article

Posted: 25. April 2010 01:32
by Genopath
Thanks!

What does the 10 and 200 mean though?

Re: Max length of news article

Posted: 25. April 2010 01:46
by Marc
It defines the text length, but I really have no idea what it exactly means. :lol: