Long text doesn't display properly
- Single Page
Posted 04 March 2012 - 14:05 PM
The text in the database is "People's Democratic Republic of Algeria", how can I fix this?
Thanks in advance.
Posted 04 March 2012 - 14:17 PM
from:
case 'text':
$value = $this->character_limiter(strip_tags($value),30," [...]");
break;
to:
case 'text':
$value = $this->character_limiter(strip_tags($value),50," [...]");
break;
The same thing you can do it for every other type.
Posted 04 March 2012 - 14:24 PM