Ignore:
Timestamp:
11/29/04 14:47:57 (19 years ago)
Author:
Kris Deugau
Message:

/branches/stable

Nitpick bugfix for more broken apostophes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/cgi-bin/main.cgi

    r86 r89  
    941941  $html =~ s|\$\$CIRCID\$\$|$webvar{circid}|g;
    942942  $webvar{desc} = desanitize($webvar{desc});
     943  $html =~ s|\$\$DESC\$\$|$webvar{desc}|g;
    943944  $webvar{notes} = desanitize($webvar{notes});
    944   $html =~ s|\$\$DESC\$\$|$webvar{desc}|g;
    945945  $html =~ s|\$\$NOTES\$\$|$webvar{notes}|g;
    946946  $html =~ s|\$\$ACTION\$\$|insert|g;
     
    13161316
    13171317  $html =~ s/\$\$BLOCK\$\$/$webvar{block}/g;
     1318  $webvar{city} = desanitize($webvar{city});
    13181319  $html =~ s/\$\$CITY\$\$/$webvar{city}/g;
    13191320  $html =~ s/\$\$ALLOCTYPE\$\$/$webvar{alloctype}/g;
    13201321  $html =~ s/\$\$TYPEFULL\$\$/$full_alloc_types{$webvar{alloctype}}/g;
    13211322  $html =~ s/\$\$CUSTID\$\$/$webvar{custid}/g;
     1323  $webvar{circid} = desanitize($webvar{circid});
    13221324  $html =~ s/\$\$CIRCID\$\$/$webvar{circid}/g;
     1325  $webvar{desc} = desanitize($webvar{desc});
    13231326  $html =~ s/\$\$DESC\$\$/$webvar{desc}/g;
     1327  $webvar{notes} = desanitize($webvar{notes});
    13241328  $html =~ s/\$\$NOTES\$\$/$webvar{notes}/g;
    13251329
Note: See TracChangeset for help on using the changeset viewer.