/[smecontribs]/rpms/smeserver-crontab_manager/contribs9/smeserver-crontab_manager-2.4-unitialised_values.patch
ViewVC logotype

Contents of /rpms/smeserver-crontab_manager/contribs9/smeserver-crontab_manager-2.4-unitialised_values.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download)
Tue Jun 10 00:21:27 2014 UTC (9 years, 10 months ago) by unnilennium
Branch: MAIN
CVS Tags: smeserver-crontab_manager-2_4-1_el6_sme, smeserver-crontab_manager-2_4-2_el6_sme, smeserver-crontab_manager-2_4-3_el6_sme, HEAD
Initial import

1 diff -Nur smeserver-crontab_manager-2.4.old/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/cronmanager.pm smeserver-crontab_manager-2.4/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/cronmanager.pm
2 --- smeserver-crontab_manager-2.4.old/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/cronmanager.pm 2013-03-05 19:11:08.000000000 +0100
3 +++ smeserver-crontab_manager-2.4/root/usr/share/perl5/vendor_perl/esmith/FormMagick/Panel/cronmanager.pm 2014-06-08 05:03:20.159117931 +0200
4 @@ -222,7 +222,7 @@
5 sub change_cron_entry {
6 my ($self) = @_;
7 my $name = $self->cgi->param('name');
8 - my $id = $self->cgi->param('id');
9 + my $id = $self->cgi->param('id') || "";
10 my $action = $self->cgi->param('action2');
11
12 $self->wherenext('First');
13 @@ -448,7 +448,7 @@
14
15 sub give_numeric {
16 my ($self, $fld) = @_;
17 - my $id = $self->cgi->param('id');
18 + my $id = $self->cgi->param('id') || "";
19
20 my %conf;
21 tie %conf, 'esmith::config';
22 @@ -625,7 +625,7 @@
23
24 sub give_bool {
25 my ($self, $fld) = @_;
26 - my $id = $self->cgi->param('id');
27 + my $id = $self->cgi->param('id') || "";
28
29 my %conf;
30 tie %conf, 'esmith::config';
31 @@ -636,11 +636,14 @@
32 my @cron_entry;
33 my $cron_entry;
34 my $ret;
35 -
36 + my $fld_value;
37 +
38 $value=db_get_prop(\%conf, "cronmanager","task$id") || "";
39 @cron_entry=split(/,/, $value);
40 +
41 + $fld_value=$cron_entry[$fld] || "";
42
43 - if ($cron_entry[$fld] eq 'YES') {
44 + if ($fld_value eq 'YES') {
45 $ret="YES";
46 } else {
47 $ret="NO";

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed