MyBB Community Forums

Full Version: Calendar headings truncated
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
since upgrading from 1.4.0 to 1.4.4 the event names on the calendar have been truncated to about 14-15 characters the ... As shown below.

is there a way I can put this back to having the whole event name displayed?

Thanks in advance

[attachment=12086]
Unfortunately, you'll need to edit the source code of your forum. So write down in a plain text file that you've made this change, so that if you come to upgrade and this file has changed you know what to edit.

The change was made in 1.4.4 due to a bug in HTML encoding/stripping.

In calendar.php, find (circa 2185):

if(my_strlen($event['name']) > 15)
						{
							$event['name'] = my_substr($event['name'], 0, 15) . "...";
						}

Either remove this piece of code, or change the "15" in my_substr to something higher. I suggest you change it to something like 35, rather than have the entire event name appear...
Thanks Tom

That did the trick.
no wonder I couldn't find it in the settings Smile

As usual excellent support