-
Bug
-
Resolution: Fixed
-
Trivial
-
3.0.x
-
None
In functions.php:
$tpl_prefix . 'BASE_URL' => $base_url,
|
'A_' . $tpl_prefix . 'BASE_URL' => addslashes($base_url),
|
and:
$tpl_prefix . 'PREVIOUS_PAGE' => ($on_page == 1) ? '' : $base_url . "{$url_delim}start=" . (($on_page - 2) * $per_page),
|
$tpl_prefix . 'NEXT_PAGE' => ($on_page == $total_pages) ? '' : $base_url . "{$url_delim}start=" . ($on_page * $per_page),
|
Seeing as they hold URIs, I believe they should be prefixed with U_ in the case of those currently without a prefix and UA_ for the one currently prefixed with only A_.