View Single Post
  #29  
Old 23rd April 2009, 18:17
Bigjoos's Avatar
Bigjoos Bigjoos is offline
U-232 Dev
 
Join Date: May 2008
United Kingdom
Posts: 244
Default
Code:
 unset ($dict['value'][{'created by'}]);
    unset ($dict['value'][{'announce-list'}]);
Should be

Code:
 unset ($dict['value']['created by']);
    unset ($dict['value']['announce-list']);
It will still fail on becoding :) Nice work all involved so far

Last edited by Bigjoos; 23rd April 2009 at 19:02. Reason: Update
Reply With Quote