Changeset 12648
- Timestamp:
- 02/22/08 22:22:44 (11 months ago)
- Files:
-
- 1 modified
-
util/branches/dev/jsdoc/jsdoc.module (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
util/branches/dev/jsdoc/jsdoc.module
r12647 r12648 1895 1895 function jsdoc_object_node_load($name, $project=false, $version=false, $resource=false, $exact=true) { 1896 1896 $nodes = jsdoc_object_nodes_load($name, $project, $version, $resource, $exact); 1897 if (count($nodes) ) {1897 if (count($nodes) == 1) { 1898 1898 return $nodes[0]; 1899 } 1900 elseif (!empty($nodes)) { 1901 return $nodes; 1899 1902 } 1900 1903 } … … 2341 2344 continue; 2342 2345 } 2343 if ( $mixin->title . '.' == substr($title, 0, strlen($mixin->title) + 1)) {2346 if (($type != 'variable' && jsdoc_get_type($mixin) == 'Constructor') && $mixin->title . '.' == substr($title, 0, strlen($mixin->title) + 1)) { 2344 2347 $title = substr($title, strlen($mixin->title) + 1); 2345 2348 }