MyBB Community Forums

Full Version: calendar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
in calendar,the event name just display about 10 characters and "...".how to increase the event name text length?
thanks
Open the file calendar.php and search for:
		if(strlen($event['subject']) > 15)
		{
			$event['subject'] = substr($event['subject'], 0, 15) . "...";
		}
Replace 15 with the numer you want (2x).
thanks a lot,i found it