menu_manager.php & shortenContent()

The truncate on menu_manager functions great and follows the option input in the back-end, however there is no indication that it shortened the title.

So looking at menu_manager I notice it uses the shortenContent() function so I added the shorten indicator, but it still doesn't reflect any differently.

My current code in menu_manager.php:
`

$limit = getOption('menu_manager_truncate_string');

if ($limit) {

$array['title'] = shortenContent($array['title'],$limit,'...');

}

`

Yet me menus are still coming up truncated without any indicator.
Sign In or Register to comment.