View Single Post
Old 01-23-2013, 02:32 PM   PM User | #10
sunfighter
Senior Coder

 
Join Date: Jan 2011
Location: Missouri
Posts: 2,364
Thanks: 18
Thanked 348 Times in 347 Posts
sunfighter is on a distinguished road
This is a guess. After line 240 you have:
PHP Code:
foreach($prescriptions as $prescription) {
                
$prescription unserialize($prescription);
            }
            
$output $prescriptions;

            return 
$output;
        break; 
Change the line
PHP Code:
$prescription unserialize($prescription); 
To
PHP Code:
$prescriptions unserialize($prescription); 
Adding an s.
sunfighter is offline   Reply With Quote