node title is always uppercase in page title and breadcrumbs in views_node.inc, function views_handler_arg_nodeletter(), Line 518.

The code there is:

...
case 'title':
      return check_plain(strtoupper($query));
...

but should be:

...
case 'title':
      return check_plain($query);
...

Is there any good reason to stay with uppercase titles?

Comments

catch’s picture

Version: 6.x-2.x-dev » 5.x-1.x-dev
Status: Active » Fixed

Must have been fixed by now.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

mactoph’s picture

The code suggested in the original post has not been fixed- although it is now on line #538.

It took me a couple of days to figure out why my taxonomy terms were displaying all uppercase until I found this post. I made the change and it was fixed.