MyBB Community Forums

Full Version: Changing The Calendar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have noticed on the calendar, it only shows the X number letters to a particular event on the month-view. I am wondering how to change it so it shows the total title. Thanks!
In calendar.php

Find
if(strlen($event['subject']) > 15)

and delete it, as it won't be needed anymore.

Find

$event['subject'] = substr($event['subject'], 0, 15) . "...";

and replace with

$event['subject'] = substr($event['subject'], 0);
That should do the trick.
Thanks!