Index: API.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activeselect/API.txt,v
retrieving revision 1.4
diff -r1.4 API.txt
14,15c14,19
< $activeselect = module_exist('activeselect');
<
---
> return drupal_get_form('foo_form_page_form');
> }
>
> function foo_form_page_form($form_state) {
> $activeselect = module_exists('activeselect');
>
49,50c53,54
<
< return drupal_get_form('foo_form_page', $form);
---
>
> return $form;
67c71
< function foo_menu($may_cache) {
---
> function foo_menu() {
70,76c74,80
< if ($may_cache) {
< $items[] = array('path' => 'foo/activeselect',
< 'title' => t('activeselect foo'),
< 'callback' => 'foo_activeselect',
< 'access' => user_access('access content'),
< 'type' => MENU_CALLBACK,
< );
---
> $items['foo/activeselect'] = array(
> 'title' => t('activeselect foo'),
> 'page callback' => 'foo_activeselect',
> 'access callback' => 'user_access',
> 'access arguments' => array('access content'),
> 'type' => MENU_CALLBACK,
> );
78,85c82,89
< // Other items ...
< $items[] = array('path' => 'foo/page',
< 'title' => t('foo bar'),
< 'callback' => 'foo_form_page',
< 'access' => user_access('access content'),
< 'type' => MENU_CALLBACK,
< );
< }
---
> // Other items ...
> $items['foo/page'] = array(
> 'title' => t('foo bar'),
> 'page callback' => 'foo_form_page',
> 'access callback' => 'user_access',
> 'access arguments' => array('access content'),
> 'type' => MENU_CALLBACK,
> );
Index: activeselect.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activeselect/activeselect.info,v
retrieving revision 1.1
diff -r1.1 activeselect.info
2a3,4
> version = VERSION
> core = 6.x
Index: activeselect.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activeselect/activeselect.js,v
retrieving revision 1.20
diff -r1.20 activeselect.js
230,231c230,231
< if (targets[target].id) {
< targetIds.push($(targets[target]).id().substr(5));
---
> if (targets[target].id) {
> targetIds.push(targets[target].id.substr(5));
Index: activeselect.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/activeselect/activeselect.module,v
retrieving revision 1.9
diff -r1.9 activeselect.module
29a30,38
> * Implementation of hook_theme().
> */
> function activeselect_theme() {
> return array(
> 'activeselect' => array('arguments' => array('element' => NULL)),
> );
> }
>
> /**
80c89
< $extra = ''. "\n";
---
> $extra = ''. "\n";
85c94
< $extra .= ''. "\n";
---
> $extra .= ''. "\n";