summaryrefslogtreecommitdiff
path: root/modules/overlay/overlay.api.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-07-17 02:12:36 +0000
committerDries Buytaert <dries@buytaert.net>2010-07-17 02:12:36 +0000
commit574afc8e9e633468c019d2eaf344794d69a75dfb (patch)
treedf9dcb9b8f59cfddb874cce2dfb8eff8d1b4288d /modules/overlay/overlay.api.php
parent050354df377943d4196f4661f182850c70b9c604 (diff)
downloadbrdo-574afc8e9e633468c019d2eaf344794d69a75dfb.tar.gz
brdo-574afc8e9e633468c019d2eaf344794d69a75dfb.tar.bz2
- Patch #615138 by quicksketch, ksenzee, casey: overlay uses () global, but it doesn't exist anymore.
Diffstat (limited to 'modules/overlay/overlay.api.php')
-rw-r--r--modules/overlay/overlay.api.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/modules/overlay/overlay.api.php b/modules/overlay/overlay.api.php
index 499c157c3..dc056ca98 100644
--- a/modules/overlay/overlay.api.php
+++ b/modules/overlay/overlay.api.php
@@ -32,13 +32,8 @@ function hook_overlay_parent_initialize() {
* within the confines of the overlay.
*/
function hook_overlay_child_initialize() {
- // Use a different theme for content administration pages.
- if (arg(0) == 'admin' && arg(1) == 'content') {
- if ($theme = variable_get('content_administration_pages_theme', FALSE)) {
- global $custom_theme;
- $custom_theme = $theme;
- }
- }
+ // Add our custom JavaScript.
+ drupal_add_js(drupal_get_path('module', 'hook') . '/hook-overlay-child.js');
}
/**