node title is always uppercase in page title and breadcrumbs
suit4 - May 3, 2007 - 13:22
| Project: | Views |
| Version: | 5.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
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:
<?php
...
case 'title':
return check_plain(strtoupper($query));
...
?>but should be:
<?php
...
case 'title':
return check_plain($query);
...
?>Is there any good reason to stay with uppercase titles?

#1
Must have been fixed by now.
#2
Automatically closed -- issue fixed for two weeks with no activity.
#3
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.