summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEudyptula <eitan@mosenkis.net>2009-07-15 16:30:48 -0400
committerEudyptula <eitan@mosenkis.net>2009-07-15 16:30:48 -0400
commit97c9ab5fa3d4b8793eebe7700c1be875640486b5 (patch)
tree2476c308465ee4246cca5bcc95a0df4303ffa153 /backend
parentAdded config status page, moving forward and back in config wizard; added con... (diff)
downloadingenue-97c9ab5fa3d4b8793eebe7700c1be875640486b5.tar.gz
ingenue-97c9ab5fa3d4b8793eebe7700c1be875640486b5.tar.bz2
ingenue-97c9ab5fa3d4b8793eebe7700c1be875640486b5.zip
Moved 'module' attribute into builds table from buildopts
Diffstat (limited to 'backend')
-rwxr-xr-xbackend/backend.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/backend/backend.php b/backend/backend.php
index 5c77fc3..6ba8af6 100755
--- a/backend/backend.php
+++ b/backend/backend.php
@@ -66,9 +66,8 @@ while (true) {
unset($opt);
}
$opts=$build->get_opts();
- $module=$opts['module'];
- $build_proc=$module.'_build';
- foreach (glob(BACKEND."/modules/$module/*.php") as $inc) {
+ $build_proc=$build->module.'_build';
+ foreach (glob(BACKEND."/modules/$build->module/*.php") as $inc) {
require_once($inc);
}
// TODO check that build_proc exists