View Single Post
  #114  
Old 19th December 2009, 09:24
Daz's Avatar
Daz Daz is offline
Senior Member
 
Join Date: Dec 2009
United Kingdom
Posts: 124
Default
Quote:
Originally Posted by jaso12 View Post
Code:
Parse error: syntax error, unexpected '{', expecting ']' in /home/jasovid/public_html/t/takeupload.php on line 431
help? it happens when i try to upload
Open up takeupload.php and find

PHP Code:
    unset ($dict['value'][{'created by'}]);
    unset (
$dict['value'][{'announce-list'}]);
    unset (
$dict['value'][nodes]); 
replace with:

PHP Code:
    unset ($dict['value']['created by']);
    unset (
$dict['value']['announce-list']);
    unset (
$dict['value']['nodes']); 
Reply With Quote