aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/event/data.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2016-03-27 12:40:38 +0200
committerMarc Alexander <admin@m-a-styles.de>2016-03-27 12:40:38 +0200
commit7d5a853b21a5be53d0364f1e02a9cddfc789a5fb (patch)
tree1098620ada9c8a6fcc36468a152f7d9c317aa24d /phpBB/phpbb/event/data.php
parenta7950bd8ced7cae6b472052456efe4626dd94337 (diff)
parent15a00131938fd0d1ae151f562f4fc75569db06cc (diff)
downloadforums-7d5a853b21a5be53d0364f1e02a9cddfc789a5fb.tar
forums-7d5a853b21a5be53d0364f1e02a9cddfc789a5fb.tar.gz
forums-7d5a853b21a5be53d0364f1e02a9cddfc789a5fb.tar.bz2
forums-7d5a853b21a5be53d0364f1e02a9cddfc789a5fb.tar.xz
forums-7d5a853b21a5be53d0364f1e02a9cddfc789a5fb.zip
Merge pull request #4228 from Senky/ticket/9435
[ticket/9435] Replace BBcode magic numbers with constants
Diffstat (limited to 'phpBB/phpbb/event/data.php')
0 files changed, 0 insertions, 0 deletions
='right'>2007-09-22 09:54:25 +0000 committerOlivier Blin <oblin@mandriva.com>2007-09-22 09:54:25 +0000 commit1d34683bd9967baaf21bed862578cc05bc02b346 (patch) tree8a7c6116258a72ddeb96247a25c0fbb58fdacf24 /kernel parenta9cfd7b60bf2115062f0b600b10ce704a848692b (diff)downloaddrakx-1d34683bd9967baaf21bed862578cc05bc02b346.tar
drakx-1d34683bd9967baaf21bed862578cc05bc02b346.tar.gz
drakx-1d34683bd9967baaf21bed862578cc05bc02b346.tar.bz2
drakx-1d34683bd9967baaf21bed862578cc05bc02b346.tar.xz
drakx-1d34683bd9967baaf21bed862578cc05bc02b346.zip
make modname2filename load module deps if needed (dependencies_closure will thus return results in standalone mode, but it shouldn't matter)
Diffstat (limited to 'kernel')
-rw-r--r--kernel/list_modules.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/list_modules.pm b/kernel/list_modules.pm
index 07d7e972e..e0fc3bce4 100644
--- a/kernel/list_modules.pm
+++ b/kernel/list_modules.pm
@@ -311,6 +311,8 @@ sub filename2modname {
}
sub modname2filename {
+ load_dependencies($::prefix . '/lib/modules/' . c::kernel_version() . '/modules.dep')
+ if !%filenames;
$filenames{$_[0]};
}