You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shindig.apache.org by li...@apache.org on 2010/07/02 01:51:38 UTC

svn commit: r959816 - /shindig/trunk/php/src/gadgets/GadgetFeatureRegistry.php

Author: lindner
Date: Thu Jul  1 23:51:38 2010
New Revision: 959816

URL: http://svn.apache.org/viewvc?rev=959816&view=rev
Log:
SHINDIG-1375 | Patch from Thiago Arrais | adget rendering fails with "contains ring" message

Modified:
    shindig/trunk/php/src/gadgets/GadgetFeatureRegistry.php

Modified: shindig/trunk/php/src/gadgets/GadgetFeatureRegistry.php
URL: http://svn.apache.org/viewvc/shindig/trunk/php/src/gadgets/GadgetFeatureRegistry.php?rev=959816&r1=959815&r2=959816&view=diff
==============================================================================
--- shindig/trunk/php/src/gadgets/GadgetFeatureRegistry.php (original)
+++ shindig/trunk/php/src/gadgets/GadgetFeatureRegistry.php Thu Jul  1 23:51:38 2010
@@ -162,7 +162,7 @@ class GadgetFeatureRegistry {
         continue;
       }
       $featureName = strtolower(substr($entry['name'], 0, strlen('core')));
-      if ($featureName != 'core' && $featureName != 'glob') {
+      if ($featureName != 'core' && $featureName != 'glob' && $entry['name'] != 'shindig.auth') {
         $this->features[$key]['deps'] = array_merge($entry['deps'], $this->coreFeatures);
       }
     }