Changeset 525 for trunk/cgi-bin/IPDB.pm


Ignore:
Timestamp:
10/22/12 17:39:05 (12 years ago)
Author:
Kris Deugau
Message:

/trunk

Found the HTML::Template knob to twist to allow listMaster() etc to
pass back '<NONE>' instead of '&lt;NONE&gt;'. See #34, #3 (sort of).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cgi-bin/IPDB.pm

    r524 r525  
    338338##fixme:  should find a way to do this without having to HTMLize the <>
    339339    $bigfree = "/$bigfree" if $bigfree;
    340     $bigfree = '&lt;NONE&gt;' if !$bigfree;
     340    $bigfree = '<NONE>' if !$bigfree;
    341341    $$_{bigfree} = $bigfree;
    342342  }
     
    366366##fixme:  should find a way to do this without having to HTMLize the <>
    367367    $bigfree = "/$bigfree" if $bigfree;
    368     $bigfree = '&lt;NONE&gt;' if !$bigfree;
     368    $bigfree = '<NONE>' if !$bigfree;
    369369    $$_{lfree} = $bigfree;
    370370  }
Note: See TracChangeset for help on using the changeset viewer.