jformer
jformer copied to clipboard
Setting PageNavigator label to 'title' does nothing
the documentation says that there are 3 options for the 'label' on the page navigator http://www.jformer.com/documentation/form-features/page-navigator/
setting to title or prefixLabels gives the same result.
My modification is to just display the title if it is set to
if ($this->pageNavigator['label'] == 'title'){
$pageNavigatorLabelText = strip_tags($jFormPage->title);
} else {
$pageNavigatorLabelText = '' . $jFormPageArrayCount . ' ' . strip_tags($jFormPage->title);
}
this was added on line 1027 in the production code the equivilent line is 695 of the JFormer.php file on the project site