summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2015-05-05 00:00:15 -0400
committerDavid Rothstein <drothstein@gmail.com>2015-05-05 00:00:15 -0400
commit494c442e2d91c4816eccac30d29e3f4c8a0c0232 (patch)
tree97d26f6fa584b530c1957579851e114a8b543553 /modules
parenta4b517fd01e41842b26a1f0329824faae39bcce1 (diff)
downloadbrdo-494c442e2d91c4816eccac30d29e3f4c8a0c0232.tar.gz
brdo-494c442e2d91c4816eccac30d29e3f4c8a0c0232.tar.bz2
Issue #2364047 by JvE, dcam: Fix missing file definitions in hook_theme() in the Update Manager module
Diffstat (limited to 'modules')
-rw-r--r--modules/update/update.module3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/update/update.module b/modules/update/update.module
index d1f0d856f..a59c7d7f9 100644
--- a/modules/update/update.module
+++ b/modules/update/update.module
@@ -278,12 +278,15 @@ function update_theme() {
),
'update_report' => array(
'variables' => array('data' => NULL),
+ 'file' => 'update.report.inc',
),
'update_version' => array(
'variables' => array('version' => NULL, 'tag' => NULL, 'class' => array()),
+ 'file' => 'update.report.inc',
),
'update_status_label' => array(
'variables' => array('status' => NULL),
+ 'file' => 'update.report.inc',
),
);
}