View Single Post
  #21  
Old 11th September 2011, 17:28
PAX's Avatar
PAX PAX is offline
Senior Member
 
Join Date: Nov 2010
P2P
Posts: 41
Default takeedit
takeedit.php
Code:
Parse error: syntax error, unexpected '{', expecting ']' in /home/xxxx/public_html/takeedit.php on line 433
big thanks Edgein


fix for takeedit.php

find:
PHP Code:
unset ($dict['value'][{'created by'}]);
      unset (
$dict['value'][{'announce-list'}]); 
replace with:
PHP Code:
unset ($dict['value']['created by']);
      unset (
$dict['value']['announce-list']); 
With thx to francisco23 For posting this
__________________



Last edited by PAX; 20th September 2011 at 09:16.
Reply With Quote
The Following User Says Thank You to PAX For This Useful Post:
DAKz (2nd March 2012)