Ensure inverse context isn't regenerated unnecessarily.

This commit is contained in:
Dave Longley 2013-04-03 17:33:17 -04:00
parent dd369c69d0
commit 6e732f5731
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<?php
/**
* PHP implementation of the JSON-LD API.
* Version: 0.0.20
* Version: 0.0.21
*
* @author Dave Longley
*
@ -4850,6 +4850,11 @@ class JsonLdProcessor {
* @return stdClass the inverse context.
*/
protected function _getInverseContext($active_ctx) {
// inverse context already generated
if($active_ctx->inverse) {
return $active_ctx->inverse;
}
$inverse = $active_ctx->inverse = new stdClass();
// handle default language