Skip to Content.
Sympa Menu

devel - Re: [sympa-dev] a problem

Subject: Developers of Sympa

List archive

Chronological Thread  
  • From: Petr Prazak <address@concealed>
  • To: address@concealed
  • Subject: Re: [sympa-dev] a problem
  • Date: Thu, 19 Apr 2001 10:26:15 +0200


17.4.2001, Petr Prazak wrote on subject `[sympa-dev] a problem':

> I have created a new list, then I changed the subscribers source from
> db to file and wwsympa stopped working. In the error_log is the
> following:

> [Tue Apr 17 16:14:46 2001] [error] [client 193.85.188.248] FastCGI:
> server "/home/sympa/bin/wwsympa.fcgi" stderr: Can't call method "seq"
> on an undefined value at /home/sympa/bin/List.pm line 2415.

> The subscribers file was empty at the moment. That could be the
> problem.

The patch:

--- List.pm.old Tue Apr 17 16:56:25 2001
+++ List.pm Tue Apr 17 16:38:07 2001
@@ -2414,3 +2414,3 @@

- if ($ref->seq($i, $j, R_FIRST) == 0) {
+ if (defined($ref) && $ref->seq($i, $j, R_FIRST) == 0) {
my %user = split(/\n/, $j);

Best regards,
Petr Prazak




  • a problem, Petr Prazak, 04/17/2001
    • Re: [sympa-dev] a problem, Petr Prazak, 04/19/2001

Archive powered by MHonArc 2.6.19+.

Top of Page