mirror of
https://github.com/e107inc/e107.git
synced 2025-08-19 12:51:52 +02:00
Issue #2032 May fix some pagination issues.
This commit is contained in:
@@ -68,7 +68,7 @@ function nextprev_shortcode($parm = '')
|
||||
* New parameter requirements formatted as a GET string.
|
||||
* Template support.
|
||||
*/
|
||||
if(is_string($parm) && strpos($parm, 'total=') !== false)
|
||||
if(strpos($parm, 'total=') !== false)
|
||||
{
|
||||
parse_str($parm, $parm);
|
||||
|
||||
@@ -363,10 +363,6 @@ function nextprev_shortcode($parm = '')
|
||||
*/
|
||||
else
|
||||
{
|
||||
if(empty($parm))
|
||||
{
|
||||
$parm = '';
|
||||
}
|
||||
$parm_count = substr_count($parm, ',');
|
||||
while($parm_count < 5)
|
||||
{
|
||||
|
Reference in New Issue
Block a user