/[webpac]/trunk/all2xml.pl
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/all2xml.pl

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 137 by dpavlin, Wed Oct 29 22:57:43 2003 UTC revision 138 by dpavlin, Wed Oct 29 23:10:51 2003 UTC
# Line 160  sub data2xml { Line 160  sub data2xml {
160                                          }                                          }
161                                          if ($filter) {                                          if ($filter) {
162                                                  no strict 'refs';                                                  no strict 'refs';
163                                                  $display_data .= $delimiter.&$filter($display) if ($display_data);                                                  if ($display_data) {
164                                                            $display_data .= $delimiter.&$filter($display);
165                                                    } else {
166                                                            $display_data = &$filter($display);
167                                                    }
168                                          } else {                                          } else {
169                                                  $display_data .= $delimiter.$display if ($display_data);                                                  if ($display_data) {
170                                                            $display_data .= $delimiter.$display;
171                                                    } else {
172                                                            $display_data = $display;
173                                                    }
174                                          }                                          }
175                                  }                                  }
176                                                                                                    

Legend:
Removed from v.137  
changed lines
  Added in v.138

  ViewVC Help
Powered by ViewVC 1.1.26