Changeset 904


Ignore:
Timestamp:
2000-02-03T14:48:52+13:00 (24 years ago)
Author:
sjboddie
Message:

fixed potential bug in ccscols stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/receptionist.cpp

    r864 r904  
    2828/*
    2929   $Log$
     30   Revision 1.45  2000/02/03 01:48:52  sjboddie
     31   fixed potential bug in ccscols stuff
     32
    3033   Revision 1.44  2000/01/24 22:53:09  sjboddie
    3134   a few small changes to get fastcgi working properly here at Waikato -
     
    10961099    bool first = true;
    10971100    while (col_here != col_end) {
    1098       if (!first) args["cc"].push_back (',');
    1099       args["cc"] += *col_here;
     1101      // make sure it's a valid collection
     1102      if (protocols.getrecptproto (*col_here, logout) != NULL) {
     1103        if (!first) args["cc"].push_back (',');
     1104        args["cc"] += *col_here;
     1105        first = false;
     1106      }
    11001107      col_here ++;
    1101       first = false;
    11021108    }
    11031109      }
Note: See TracChangeset for help on using the changeset viewer.