Changeset 12571
- Timestamp:
- 02/20/08 16:21:35 (11 months ago)
- Files:
-
- 1 modified
-
util/branches/dev/jsdoc/jsdoc.module (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
util/branches/dev/jsdoc/jsdoc.module
r12570 r12571 2337 2337 $type = substr($type, 0, -1); 2338 2338 foreach ($items as $item) { 2339 if ($type == 'variable' && $item->title != $node->title) {2340 continue;2341 }2342 2339 if (is_object($item)) { 2343 2340 $title = $item->title; 2341 if ($type == 'variable' && $node->title . '.' != substr($title, 0, strlen($node->title) + 1)) { 2342 continue; 2343 } 2344 2344 if ($mixin->title . '.' == substr($title, 0, strlen($mixin->title) + 1)) { 2345 2345 $title = substr($title, strlen($mixin->title) + 1);