Revision 4bae16da
Von Bernd Blessmann vor fast 13 Jahren hinzugefügt
bin/mozilla/amcvar.pl | ||
---|---|---|
211 | 211 |
$main::lxdebug->leave_sub(); |
212 | 212 |
} |
213 | 213 |
|
214 |
sub update { |
|
215 |
$main::lxdebug->enter_sub(); |
|
216 |
|
|
217 |
my $form = $main::form; |
|
218 |
|
|
219 |
$main::auth->assert('config'); |
|
220 |
|
|
221 |
$form->{included_by_default} = $form->{inclusion} eq 'yes_default_on'; |
|
222 |
$form->{includeable} = $form->{inclusion} ne 'no'; |
|
223 |
|
|
224 |
display_cvar_config_form(); |
|
225 |
|
|
226 |
$main::lxdebug->leave_sub(); |
|
227 |
} |
|
228 |
|
|
229 |
|
|
214 | 230 |
sub dispatcher { |
215 | 231 |
my $form = $main::form; |
216 | 232 |
my $locale = $main::locale; |
217 | 233 |
|
218 |
foreach my $action (qw(list_cvar_configs add_cvar_config)) { |
|
234 |
foreach my $action (qw(list_cvar_configs add_cvar_config update)) {
|
|
219 | 235 |
if ($form->{"action_${action}"}) { |
220 | 236 |
call_sub($action); |
221 | 237 |
return; |
... | ... | |
226 | 242 |
} |
227 | 243 |
|
228 | 244 |
1; |
245 |
|
doc/changelog | ||
---|---|---|
60 | 60 |
Liste gefixter Bugs aus dem Bugtracker: |
61 | 61 |
|
62 | 62 |
- Bugfix 1640: Buchungen werden falsch zugeordnet, wenn man Konten umkonfiguriert |
63 |
- Bugfix 1753: Benutzerdefinierte Variable f. Waren: bearbeitbar nicht auswählbar |
|
63 | 64 |
|
64 | 65 |
|
65 | 66 |
2011-06-15 - Release 2.6.3 |
templates/webpages/amcvar/display_cvar_config_form.html | ||
---|---|---|
20 | 20 |
name = 'module', |
21 | 21 |
id_key = 'module', |
22 | 22 |
label_key = 'description', |
23 |
DATA = MODULES %] |
|
23 |
DATA = MODULES, |
|
24 |
onChange = "document.getElementById('update_button').click();" %] |
|
24 | 25 |
</td> |
25 | 26 |
</tr> |
26 | 27 |
|
... | ... | |
93 | 94 |
<input type="hidden" name="id" value="[% HTML.escape(id) %]"> |
94 | 95 |
|
95 | 96 |
<p> |
97 |
<input type="submit" name="action" id="update_button" value="[% 'Update' | $T8 %]"> |
|
96 | 98 |
<input type="submit" name="action" value="[% 'Save' | $T8 %]"> |
97 | 99 |
[%- IF id %] |
98 | 100 |
<input type="submit" name="action" value="[% 'Delete' | $T8 %]"> |
Auch abrufbar als: Unified diff
Fix für Bug 1753, Benutzerdefinierte Variable f. Waren: bearbeitbar nicht auswählbar
Es gibt jetzt ein Erneuern-Knopf. Und dieser wird auch beim Wechseln des Modules
ausgelöst.