Diff for /loncom/interface/Attic/londropadd.pm between versions 1.13 and 1.14

version 1.13, 2001/02/22 16:47:54 version 1.14, 2001/08/07 14:07:36
Line 7 Line 7
 #  #
 # (TeX Content Handler  # (TeX Content Handler
 #  #
   # YEAR=2000
 # 05/29/00,05/30,10/11 Gerd Kortemeyer)  # 05/29/00,05/30,10/11 Gerd Kortemeyer)
 #  #
 # 10/11,10/12,10/16 Gerd Kortemeyer)  # 10/11,10/12,10/16 Gerd Kortemeyer)
Line 15 Line 16
 # 12/08,12/12 Gerd Kortemeyer)  # 12/08,12/12 Gerd Kortemeyer)
 #  #
 # 12/26,12/27,12/28,  # 12/26,12/27,12/28,
   # YEAR=2001
 # 01/01/01,01/15,02/10,02/13,02/14,02/22 Gerd Kortemeyer  # 01/01/01,01/15,02/10,02/13,02/14,02/22 Gerd Kortemeyer
   # 8/6 Scott Harrison
   
 package Apache::londropadd;  package Apache::londropadd;
   
Line 520  function verify(vf) { Line 523  function verify(vf) {
     var foundatype=0;      var foundatype=0;
     var tw;      var tw;
     var message='';      var message='';
     if ((vf.cuname.value!=undefined) && (vf.cuname.value!='') &&       if ((typeof(vf.cuname.value)!="undefined") && (vf.cuname.value!='') && 
  (vf.cdomain.value!=undefined) && (vf.cdomain.value!='')) {   (typeof(vf.cdomain.value)!="undefined") && (vf.cdomain.value!='')) {
         founduname=1;          founduname=1;
     }      }
     if ((vf.cfirst.value!=undefined) && (vf.cfirst.value!='') &&      if ((typeof(vf.cfirst.value)!="undefined") && (vf.cfirst.value!='') &&
  (vf.clast.value!=undefined) && (vf.clast.value!='')) {   (typeof(vf.clast.value)!="undefined") && (vf.clast.value!='')) {
         foundname=1;          foundname=1;
     }      }
     if ((vf.csec.value!=undefined) && (vf.csec.value!='')) {      if ((typeof(vf.csec.value)!="undefined") && (vf.csec.value!='')) {
         foundsec=1;          foundsec=1;
     }      }
     if ((vf.cstid.value!=undefined) && (vf.cstid.value!='')) {      if ((typeof(vf.cstid.value)!="undefined") && (vf.cstid.value!='')) {
  foundid=1;   foundid=1;
     }      }
     if (founduname==0) {      if (founduname==0) {

Removed from v.1.13  
changed lines
  Added in v.1.14


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>