Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

Version 1 Next »

Imported From: http://groups.google.com/group/in-portal-bugs/browse_thread/thread/1bbb8766e185c021#

Hi guys,

while working on one of my project, I've discovered 2 things which would need a bug-fix and an update.

PageInfo tag render incorrectly htmlhead_title and title parameters, because mapping is wrong between info entered in admin and result on pag, in categories_tag_processor:

  case 'title':
   $db_field = 'Title';
   break;

  case 'htmlhead_title':
   $db_field = 'Name';
   break;

and it should be

case 'title':
$db_field = 'Name';
break;

case 'htmlhead_title':
$db_field = 'Title';
break;

Navigation bar use "Name" to display the path, which is not so good: if page title is very long, navbar display will become ugly, and if user click on a menu name, he shoud see this menu name in navbar, instead of page title. Then I recommend here to fix this on the whole system, but it's out of my knowledge... need to change how CategoryPath works...may by adding a new prefix, just used in navbar scheme?

p

  • No labels