In-Portal Issue Tracker

Welcome to the In-Portal Open Source CMS Issue Tracker! This is a central management / tracking tool for all types of tasks / issues / bugs for the In-Portal Project. Before reporting any issues, please make sure to read the Guide into Issue Tracker and How to Properly Test and Report Bugs!

Dependency Graph View Issue ] Relation Graph ] Vertical ]
related to child of duplicate of

Viewing Issue Simple Details
ID Category Type Reproducibility Date Submitted Last Update
0001222 [In-Portal CMS] Data Management bug report always 2012-03-12 15:55 2012-07-25 05:31
Reporter Dmitry View Status public  
Assigned To alex
Priority normal Resolution fixed  
Status closed      
Summary 0001222: Incorrect PageInfo Mapping and Navbar
Description 1. 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;


2. Navigation bar add "title_field" parameter to c_NavigationBar tag, that will allow to use any specified field to compose navigation bar (will require extra select). Pass "MenuTitle" field on front-end. This way we'll keep consistent navigation bar in admin console and on front-end.
Additional Information



Web Development by Intechnic
In-Portal Open Source CMS
In-Portal Open Source CMS
Copyright © 2000 - 2009 MantisBT Group

Powered by Mantis Bugtracker