Quote:
Originally Posted by DislexiK
Yeah, sorry about that I typed that out. The spelling is correct within the template.
|
The only other thing then is that the page_nav is constructed in a function called construct_page_nav (dont quote me on that- its off the top of my head). The function is in functions_showthread.php (I think). You would need to edit that function and include $GAS_isarticle as a global variable.
Quote:
Originally Posted by The Geek
The only other thing then is that the page_nav is constructed in a function called construct_page_nav (dont quote me on that- its off the top of my head). The function is in functions_showthread.php (I think). You would need to edit that function and include $GAS_isarticle as a global variable.
|
Actually... I just did some digging and found it.
Its in functions.php
search for:
PHP Code:
function construct_page_nav($results, $address, $address2 = '')
{
global $perpage, $pagenumber, $vboptions, $vbphrase, $stylevar, $_REQUEST, $show;
And tag ,$GAS_is_article before the semi colon after show like this:
PHP Code:
global $perpage, $pagenumber, $vboptions, $vbphrase, $stylevar, $_REQUEST, $show, $GAS_is_article;