09/25/2018 at 2:07 pm
#473251
Participant
Thanks again for your extremely quick reply. So I have manually debugged with my limited set of skills to this point:
private static function setCurrentEntry() {
// Grab an instance of the Connections object.
$instance = Connections_Directory();
$result = $instance->retrieve->entry( self::$entryID );
if ( FALSE !== $result ) {
die("currentEntry assigned");
self::$currentEntry = new cnOutput( $result );
}
else {
die("currentEntry not assigned");
}
}
self::$entryID is not null and is a real connections entry however it seems the result is returning FALSE
What are my steps for debugging further than this? I need to figure out why the retrieve entry method is returning nothing yet the record ID is clearly there..
Please advise.
