title character lenght
Hello! Please do me a favour.
How can i increase the number of title character? coz The default is 100 characters, but my community is in Khmer language so 1 Character of Khmer Unicode = 3 Characters of English. How can I increase?
How can i increase the number of title character? coz The default is 100 characters, but my community is in Khmer language so 1 Character of Khmer Unicode = 3 Characters of English. How can I increase?
Tagged:
0
Comments
To prevent future updates from crushing your new limit I'd recommend adding the following to your theme hooks or a plugin.
public function Gdn_MySQLStructure_BeforeSet_Handler($Sender, $Args) {if ($Sender->TableName() == 'Discussion')
$Sender->Column('Name', 'varchar(255)', FALSE, 'fulltext');
}