hnorfleet Posted June 8, 2005 Share Posted June 8, 2005 For anyone else having an sql syntax error on the admin side with this contribution. In admin/links.php line 635 change this code: $links_split = new splitPageResults($HTTP_GET_VARS['page'], MAX_LINKS_DISPLAY, $links_query_raw, $links_query_numrows); to this: $links_split = new splitPageResults( $links_query_raw, MAX_LINKS_DISPLAY, $links_query_numrows,$HTTP_GET_VARS['page']); and in admin/link_categories.php line 169 change this code: $link_categories_split = new splitPageResults($HTTP_GET_VARS['page'], MAX_DISPLAY_SEARCH_RESULTS, $link_categories_query_raw, $link_categories_query_numrows); to this: $link_categories_split = new splitPageResults($link_categories_query_raw, MAX_DISPLAY_SEARCH_RESULTS, $link_categories_query_numrows,$HTTP_GET_VARS['page']); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.