minor fix user_edig

Former-commit-id: 2e13b75edd5625fa2d1d6d9360d55a19f0992ac0
This commit is contained in:
fbsanchez 2019-02-25 14:41:27 +01:00
parent 1f26a8c4b3
commit cdca720d9a
2 changed files with 1 additions and 16 deletions

View File

@ -96,21 +96,6 @@ foreach ($classes as $classpath) {
include_once $classpath;
}
// Load enterprise wizards.
if (enterprise_installed() === true) {
$enterprise_classes = glob(
$config['homedir'].'/'.ENTERPRISE_DIR.'/wizards/*.class.php'
);
foreach ($enterprise_classes as $classpath) {
$r = enterprise_include_once(
'wizards/'.basename($classpath)
);
}
}
// Combine class paths.
$classes = array_merge($classes, $enterprise_classes);
// Sort output.
uasort($classes, 'cl_load_cmp');

View File

@ -600,7 +600,7 @@ $table->rowclass[] = '';
$table->rowstyle[] = '';
$table->data[] = $data;
echo '<form name="user_mod" method="post" action="'.$url.'&amp;modified=1&amp;id='.$id.'&amp;pure='.$config['pure'].'">';
echo '<form name="user_mod" method="post" action="'.ui_get_full_url().'&amp;modified=1&amp;id='.$id.'&amp;pure='.$config['pure'].'">';
html_print_table($table);