98a99,123
>     // Menu items for configuring themes.
>   $items['admin/build/domain/theme/%domain'] = array(
>     'title' => 'Domain theme settings',
>     'type' => MENU_CALLBACK,
>     'access arguments' => array('administer own domains'),
>     'page callback' => 'my_domains_theme_page',
>     'page arguments' => array(4),
>     'file' => 'domain_theme.admin.inc',
>   );
>   $items['admin/build/domain/theme-reset/%domain'] = array(
>     'title' => 'Domain theme settings',
>     'type' => MENU_CALLBACK,
>     'access arguments' => array('administer own domains'),
>     'page callback' => 'my_domains_theme_reset',
>     'page arguments' => array(4),
>     'file' => 'domain_theme.admin.inc',
>   );
>   $items['admin/build/domain/theme/%/%domain/theme-settings'] = array(
>     'title' => 'Configure domain theme settings',
>     'type' => MENU_CALLBACK,
>     'access arguments' => array('administer own domains'),
>     'page callback' => 'my_domains_theme_settings',
>     'page arguments' => array(4, 5),
>     'file' => 'domain_theme.admin.inc',
>   );
