From 648d2731d557c423706c0befabb3e9140e332e01 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Thu, 26 Sep 2019 12:16:46 -0400 Subject: [PATCH] Update to docs in MarkupPagerNav.module per processwire/processwire-issues#969 --- wire/modules/Markup/MarkupPagerNav/MarkupPagerNav.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wire/modules/Markup/MarkupPagerNav/MarkupPagerNav.module b/wire/modules/Markup/MarkupPagerNav/MarkupPagerNav.module index c305fc01..d5246a0b 100644 --- a/wire/modules/Markup/MarkupPagerNav/MarkupPagerNav.module +++ b/wire/modules/Markup/MarkupPagerNav/MarkupPagerNav.module @@ -73,7 +73,7 @@ require_once(dirname(__FILE__) . '/PagerNav.php'); * not necessary to change any of the default options unless you want to change the markup and/or classes used in output. * #pw-body * - * @property int $numPageLinks The number of links that the pagination navigation should have (default=10). #pw-group-general-options + * @property int $numPageLinks The number of links that the pagination navigation should have, minimum 5 (default=10). #pw-group-general-options * @property array $getVars GET vars that should appear in the pagination, or leave empty and populate $input->whitelist (recommended). #pw-group-general-options * @property string $baseUrl The base URL from which the navigation item links will start (default=''). #pw-group-general-options * @property null|Page $page The current Page, or leave NULL to autodetect. #pw-group-general-options @@ -128,7 +128,7 @@ class MarkupPagerNav extends Wire implements Module { */ protected $options = array( - // number of links that the pagination navigation should have (typically 10) + // number of links that the pagination navigation should have, minimum 5 (typically 10) 'numPageLinks' => 10, // get vars that should appear in the pagination, or leave empty and populate $input->whitelist (preferred)