diff options
author | mistic100 <mistic@piwigo.org> | 2012-09-23 11:19:26 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-09-23 11:19:26 +0000 |
commit | 4e65d9af4667f3d8556522843f776f1fa074ea21 (patch) | |
tree | ea39e514f64b1cea7cd8df375eae4f1fc38e3682 /include/functions_url.inc.php | |
parent | 7e33b84e770ddab61ef1d5c67061cd41c189f20e (diff) |
feature 2614: pagination on albums
git-svn-id: http://piwigo.org/svn/trunk@18165 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_url.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/functions_url.inc.php b/include/functions_url.inc.php index 8d9dba93e..7a3853e25 100644 --- a/include/functions_url.inc.php +++ b/include/functions_url.inc.php @@ -458,6 +458,7 @@ function parse_section_url( $tokens, &$next_token) and strpos($tokens[$current_token], 'created-')!==0 and strpos($tokens[$current_token], 'posted-')!==0 and strpos($tokens[$next_token], 'start-')!==0 + and strpos($tokens[$next_token], 'starta-')!==0 and $tokens[$current_token] != 'flat') { if (empty($maybe_permalinks)) @@ -651,6 +652,10 @@ function parse_well_known_params_url($tokens, &$i) { $page['start'] = $matches[1]; } + elseif (preg_match('/^starta-(\d+)/', $tokens[$i], $matches)) + { + $page['starta'] = $matches[1]; + } $i++; } return $page; |