Closed (fixed)
Project:
Views (for Drupal 7)
Version:
5.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 May 2007 at 13:22 UTC
Updated:
8 Apr 2008 at 04:25 UTC
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
Comment #1
catchMust have been fixed by now.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.
Comment #3
mactoph commentedThe 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.