Changeset 12571

Show
Ignore:
Timestamp:
02/20/08 16:21:35 (11 months ago)
Author:
pottedmeat
Message:

Refs #5602. Because some things don't get inherited

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • util/branches/dev/jsdoc/jsdoc.module

    r12570 r12571  
    23372337      $type = substr($type, 0, -1); 
    23382338      foreach ($items as $item) { 
    2339         if ($type == 'variable' && $item->title != $node->title) { 
    2340           continue; 
    2341         } 
    23422339        if (is_object($item)) { 
    23432340          $title = $item->title; 
     2341          if ($type == 'variable' && $node->title . '.' != substr($title, 0, strlen($node->title) + 1)) { 
     2342            continue; 
     2343          } 
    23442344          if ($mixin->title . '.' == substr($title, 0, strlen($mixin->title) + 1)) { 
    23452345            $title = substr($title, strlen($mixin->title) + 1);