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

« Previous Version 2 Current »

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

categories_tag_processor.php
case 'title':
	$db_field = 'Title'; 
	break;

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

and it should be:

categories_tag_processor.php
 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?

Related Tasks

Error rendering macro 'jira' : Unable to locate Jira server for this macro. It may be due to Application Link configuration.

  • No labels