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
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

catch - January 10, 2008 - 12:48
Version:6.x-2.x-dev» 5.x-1.x-dev
Status:active» fixed

Must have been fixed by now.

#2

Anonymous (not verified) - January 24, 2008 - 12:51
Status:fixed» closed

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

#3

mactoph - April 8, 2008 - 04:25

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.

 
 

Drupal is a registered trademark of Dries Buytaert.