Subversion Repositories oidplus

Rev

Rev 830 | Rev 1016 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 830 Rev 1005
Line 151... Line 151...
151
}
151
}
152
step_system_title($step++, $do_edits, $errors_happened);
152
step_system_title($step++, $do_edits, $errors_happened);
153
 
153
 
154
# ---
154
# ---
155
 
155
 
156
foreach (OIDplus::getPagePlugins() as $plugin) {
156
foreach (OIDplus::getAllPlugins() as $plugin) {
157
        if ($plugin->implementsFeature('1.3.6.1.4.1.37476.2.5.2.3.1')) {
157
        if ($plugin->implementsFeature('1.3.6.1.4.1.37476.2.5.2.3.1')) {
158
                $plugin->oobeEntry($step++, $do_edits, $errors_happened);
158
                $plugin->oobeEntry($step++, $do_edits, $errors_happened);
159
        }
159
        }
160
}
160
}
161
 
161
 
Line 197... Line 197...
197
$cont = ob_get_contents();
197
$cont = ob_get_contents();
198
ob_end_clean();
198
ob_end_clean();
199
 
199
 
200
if ($do_edits && !$errors_happened)  {
200
if ($do_edits && !$errors_happened)  {
201
        OIDplus::config()->setValue('oobe_main_done', '1');
201
        OIDplus::config()->setValue('oobe_main_done', '1');
-
 
202
        OIDplus::invoke_shutdown();
202
        header('Location:../../../../');
203
        header('Location:../../../../');
203
} else {
204
} else {
-
 
205
        OIDplus::invoke_shutdown();
204
        echo $cont;
206
        echo $cont;
205
}
207
}