Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

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

Code Block
languagephp
titlecategories_tag_processor

...

.php

...

case 'title':

...


	$db_field = 'Title';

...

 
	break;

case 'htmlhead_title':

...

 
	$db_field = 'Name';

...

 
	break;

and it should be
case :

Code Block
languagephp
titlecategories_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?p

Related Tasks

Jira Legacy
serverIn-Portal Issue Tracker
keyINP-997