View Single Post
  #14  
Old 21st July 2009, 03:02
Night_Owl Night_Owl is offline
Member
 
Join Date: Jun 2009
P2P
Posts: 10
Question havin issue's
Code:
Parse error:  syntax error, unexpected T_LOGICAL_OR in /dir/dir/dir/public_html/details.php on line 109


were usin the strikemulti version i seen someone else tryed it on another version other then tbdev and it still worked any idea's on how to fix this line 109

Code:
or sqlerr();

is that this is the section its in

PHP Code:
$res mysql_query("SELECT torrents.seeders, torrents.banned, torrents.leechers, torrents.info_hash, torrents.filename, LENGTH(torrents.nfo) AS nfosz, UNIX_TIMESTAMP() - UNIX_TIMESTAMP(torrents.last_action) AS lastseed, torrents.numratings, torrents.name, IF(torrents.numratings < $minvotes, NULL, ROUND(torrents.ratingsum / torrents.numratings, 1)) AS rating, torrents.owner, torrents.save_as, torrents.descr, torrents.visible, torrents.size, torrents.added, torrents.views, torrents.hits, torrents.times_completed, torrents.id, torrents.type, torrents.numfiles, torrents.nfo, torrents.image1, torrents.image2, torrents.category, categories.name AS cat_name, users.username FROM torrents LEFT JOIN categories ON torrents.category = categories.id LEFT JOIN users ON torrents.owner = users.id WHERE torrents.id = $id") or sqlerr();
    or 
sqlerr();
$row mysql_fetch_array($res);

$owned $moderator 0;
    if (
get_user_class() >= UC_MODERATOR)
        
$owned $moderator 1;
    elseif (
$CURUSER["id"] == $row["owner"])
        
$owned 1;
//} 
Reply With Quote