aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-06-27 20:47:03 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-06-27 20:47:03 +0530
commit69001902b98f66c8bf4c21df5920d2b070aa9a71 (patch)
treecf10f70bdf1d19e1e5650bfaae9b598d1100f9bc /phpBB/includes/functions.php
parentbd9ece7ab678976db58325d740124b309507b5ca (diff)
downloadforums-69001902b98f66c8bf4c21df5920d2b070aa9a71.tar
forums-69001902b98f66c8bf4c21df5920d2b070aa9a71.tar.gz
forums-69001902b98f66c8bf4c21df5920d2b070aa9a71.tar.bz2
forums-69001902b98f66c8bf4c21df5920d2b070aa9a71.tar.xz
forums-69001902b98f66c8bf4c21df5920d2b070aa9a71.zip
[ticket/9341] remove PREV_PAGE tpl var used for backward compatability
PHPBB3-9341
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 03a5b36a43..6a1b3fd4f8 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -2346,7 +2346,6 @@ function phpbb_generate_template_pagination($template, $base_url, $block_var_nam
'A_' . $tpl_prefix . 'BASE_URL' => addslashes($base_url),
$tpl_prefix . 'PER_PAGE' => $per_page,
'U_' . $tpl_prefix . 'PREVIOUS_PAGE' => $previous_page,
- $tpl_prefix . 'PREV_PAGE' => $previous_page,
'U_' . $tpl_prefix . 'NEXT_PAGE' => ($on_page != $total_pages) ? $base_url . $url_delim . $start_name . '=' . ($on_page * $per_page) : '',
$tpl_prefix . 'TOTAL_PAGES' => $total_pages,
$tpl_prefix . 'CURRENT_PAGE' => $on_page,