the problem is probably with the Display Template function.
Code:
DisplayTemplate($theme_path."browse2.html"," \$category_path,\$category_path_search_opt,\$categ
ory,".
" \$num_rows,\$pagination,\$cat,\$link,\$content,\$s
tart_number,\$ma,\$editor,\$featured_link,\$hot_li
nks,\$top_votes,\$new_links");
and it is probably caused by vBulletin inserting a line break into the code. vB will only allow 50 characters in arow and then it will insert a line break.
Notice the two lines above:
Code:
\$num_rows,\$pagination, \$cat,\$link,\$content,\$s
and
Code:
tart_number,\$ma,\$editor, \$featured_link,\$hot_li
they should look more like
Code:
\$num_rows, \$pagination, \$cat,\$link, \$content, \$start_number,
and
Code:
tart_number, \$ma, \$editor, \$featured_link, \$hot_links,
try this line instead
Code:
Code:
DisplayTemplate($theme_path."browse2.html"," \$category_path, \$category_path_search_opt, \$category,".
"\$num_rows,\$pagination,\$cat, \$link,\$content, \$start_number,\$ma, \$editor,\$featured_link, \$hot_links,\$top_votes,\$new_links");