Changeset 12639
- Timestamp:
- 02/22/08 19:22:12 (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
r12638 r12639 216 216 return; 217 217 } 218 elseif ($object = jsdoc_object_node_load($search)) { 219 drupal_goto($object->jsdoc_url); 220 return; 218 else { 219 $query = db_query("SELECT title FROM {node} WHERE type = 'jsdoc_object' AND title LIKE '%%%s%%' GROUP BY BINARY title", $search); 220 if (db_num_rows($query) == 1) { 221 $object = jsdoc_object_node_load(db_result($query)); 222 drupal_goto($object->jsdoc_url); 223 return; 224 } 221 225 } 222 226 }