diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-30 10:14:42 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-30 10:14:42 +0000 |
commit | ef1235cc0a97305216d8987e3bd8459d30cbe5df (patch) | |
tree | fb22189c3d715f210a97128e08b6bd5f8fa92ebd /modules/update/update.report.inc | |
parent | cdbcbac8b0c626af1e5ce04a0cdf7853af764fef (diff) | |
download | brdo-ef1235cc0a97305216d8987e3bd8459d30cbe5df.tar.gz brdo-ef1235cc0a97305216d8987e3bd8459d30cbe5df.tar.bz2 |
#207863 by mikey_p, Pancho: use module_load_include() as intended
Diffstat (limited to 'modules/update/update.report.inc')
-rw-r--r-- | modules/update/update.report.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/update/update.report.inc b/modules/update/update.report.inc index b27b3252b..a73246899 100644 --- a/modules/update/update.report.inc +++ b/modules/update/update.report.inc @@ -11,7 +11,7 @@ */ function update_status() { if ($available = update_get_available(TRUE)) { - include_once './modules/update/update.compare.inc'; + module_load_include('inc', 'update', 'update.compare'); $data = update_calculate_project_data($available); return theme('update_report', $data); } |