[eluser]sethbaur[/eluser]
I'm having an issue with include_related. I saw someone had the same problem a while back, but I don't think it was resolved. Here is basically what's happening:
On my local server (MAMP on my MacBook) this works just find and for each "story" I can access its associated "link." As soon as this code was moved to the web host, it stopped working. In order to access the "link" I have to remove the "include_related" and use:
Code:
foreach ($stories as &$story) {
$story->link->get();
}
MAMP is running PHP 5.2.10, and the web host is running 5.2.12. Both servers are running the same application, same version of CodeIgniter (1.7.2) and DMZ (1.7.0).