Changeset 12652
- Timestamp:
- 02/22/08 22:46:22 (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
r12651 r12652 2226 2226 $variables = jsdoc_get_child_variables($node); 2227 2227 if (!empty($variables)) { 2228 uksort($variables, "strnatcasecmp");2229 2228 foreach ($variables as $child) { 2230 $children[] = _jsdoc_get_object_themed($child); 2231 } 2229 $title = $child->title; 2230 if (!jsdoc_is_namespace($node) && $node->title . '.' == substr($title, 0, strlen($node->title) + 1)) { 2231 $title = substr($title, strlen($node->title) + 1); 2232 } 2233 $children[$title] = _jsdoc_get_object_themed($child, $title); 2234 } 2235 uksort($children, "strnatcasecmp"); 2232 2236 $form['children'] = array( 2233 2237 '#value' => theme('jsdoc_object_children', $children), … … 2357 2361 continue; 2358 2362 } 2359 if ( $mixin->title . '.' == substr($title, 0, strlen($mixin->title) + 1)) {2363 if (!jsdoc_is_namespace($node) && $mixin->title . '.' == substr($title, 0, strlen($mixin->title) + 1)) { 2360 2364 $title = substr($title, strlen($mixin->title) + 1); 2361 2365 }