View Single Post
  #16  
Old 9th December 2011, 16:46
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
PHP Code:
<?phpnzb_categories_list();?>
Should be

PHP Code:
<?php 
nzb_categories_list
();
?>
Dont use short open tags always ensure you use

PHP Code:
<?php
not

PHP Code:
<?
Your source code is ages old and there should be no usage of short open tag nowadays its old skool shit.
Reply With Quote